type=chain 转发到一个视图 type=dispatcher 转发到另外一个action; type=redirect 重定向到一个视图 type=redirectAction 重新定向到另外一个action(以上4种都是默认用jsp作为前台模板引擎);type=freemarker、velocity代表使用别的视图类型作为前台显示。其它都很少用,用的多的也就前面4种
2016-11-28
2.5的同学头文件也不要忘记修改,
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
"http://struts.apache.org/dtds/struts-2.5.dtd">
package属性加上就OK了
<package name="default" namespace="/" extends="struts-default" strict-method-invocation="false">
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
"http://struts.apache.org/dtds/struts-2.5.dtd">
package属性加上就OK了
<package name="default" namespace="/" extends="struts-default" strict-method-invocation="false">
2016-11-28
有了struts2的概念之后再来看这个简单多了 struts2传说是用来替代Servlet的东东 就是用来控制跳转的 还有jar包记不住的可以在下载的struts2的 示范的app里面 blank.war里面lib文件夹下应该都是核心的jar包 我就是直接用它的
2016-11-26
struts.xml看这里http://www.cnblogs.com/kay/archive/2007/11/28/976120.html
2016-11-26