文章列表
Web.xml中过滤器配置的区别
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
<!-- 自从Struts 2.1.3以后,下面的FilterDispatcher已经标注为过时
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
--> ...
1、概述
1.1 Struts和WebWork的关系
Struts2是在WebWork2基础发展而来的
1.2 Struts2优点
1>在软件设计上Struts2没有像Struts1那样与struts API有着紧密的偶合,Struts2的属于无入侵式设计,struts1属于侵入式设计
2> Struts2提供了拦截器,利用拦截器可以进行AOP编程,实现如权限拦截等功能。3> Strut2提供了类型转换器,我们可以把特殊的请求参数转换成需要的类型。在Struts1中,如果我们要实现同样的功能,就必须向Struts1的底层实现BeanUtil注册类型转换器才行。4 ...
我们经常会来打jar包,但是eclipse自带的打jar似乎不太够用。那我们就用Fat jar吧。它是一个eclipse插件。
在线安装:
eclipse菜单栏 help >software updates >Search for new features to install>new update site>
填写name 和url
name:这里随便写了 就写fat吧
url:这个是fat jar的地址 输入http://kurucz-grafika.de/fatjar
剩下的就点点下一步了吧。
- 2009-11-09 21:53
- 浏览 864
- 评论(0)
进入启动盘,点修复
在命令行中输入Bootrec.exe /fixmbrBootrec /fixboot
- 2009-10-25 01:27
- 浏览 937
- 评论(0)
JAVA综合--如何掌握JDK1.5枚举类型
2007-09-25 07:34 作者:baocl 来源:赛迪网
[摘要] Enum作为Sun全新引进的一个关键字,看起来很象是特殊的class, 它也可以有自己的变量,可以定义自己的方法,可以实现一个或者多个接口。
[ ...
- 2009-10-24 16:51
- 浏览 842
- 评论(0)
A servlet can store data for JSP pages in three main places: in the HttpServletRequest, in the HttpSession, and in the ServletContext. These storage locations correspond to the three nondefault values of the scope attribute of jsp:useBean: that is, request, session, and application.
in the HttpSer ...
- 2009-10-24 16:50
- 浏览 684
- 评论(0)
You use three main constructs to build and manipulate JavaBeans components in JSP pages:
jsp:useBean. In the simplest case, this element builds a new bean. It is normally used as follows:
<jsp:useBean id="beanName"
class="package.Class" />
If you supply a ...
- 2009-10-24 16:49
- 浏览 659
- 评论(0)
在Android中,经常需要调用WS接口,而接口一般都支持XML格式,所以在Java中解析XML是非常重要的,这里转一篇比较老的文章写得比较详细,如下:
----文章----来源:http://www0.ccidnet.com/tech/guide/2001/10/08/58_3393.htmlDOM初步
DOM是Document Ob ...
- 2009-10-08 23:54
- 浏览 730
- 评论(0)
原帖:
http://www0.ccidnet.com/tech/guide/2001/10/08/58_3392.html
SAX概念 SAX是Simple API for XML的缩写,它并不是由W3C官方所提出的标准,可以说是“民间”的事实标准。实际上,它是一种社区性质的讨论产物。虽然如此,在XML中对SAX的应用 ...
- 2009-10-08 23:48
- 浏览 1061
- 评论(1)
1.JAVA处理XML的文件接口
对XML数据文件操作的接口,目前存在2类标准:DOM & SAX。DOM将xml数据文件作为整体来处理,SAX将XML作为数据流来处理。
除上述2类标准外还有很多非标准的XML操作接口:JDOM、DOM4J等。这些接口或模块与标准的DOM不兼容,但由于其易用性,在java开发群体中有着十分广泛的应用。
1.1 DOM标准
DOM是一种操作XML数据文件最广泛的标准,独立于特定的语言和平台。很多XML解析器都实现DOM接口标准。DOM标准最基本的思想是将整个XML数据文件载入内存,将其解析成一颗树形对象。因而基于DOM ...
TableViewer初入
本例会实现些效果 右键菜单 双击一行 首先新建PeopleEntity,此类为假想数据表entity
Java代码 <embed type="application/x-shockwave-flash" width="14" height="15" src="http://favor.iteye.com/javascripts/syntaxhighlighter/clipboard_new.swf" pluginspage="http://www.ma ...
- 2009-04-22 00:26
- 浏览 1480
- 评论(0)