-
stusts2 处理结果类型
查看全部 -
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
为什么我写了ng,Ctrl点击不跳转
查看全部 -
Action搜索顺序
查看全部 -
struts访问Servlet API
查看全部 -
struts.xml
查看全部 -
web.xml
查看全部 -
Struts2工作原理
查看全部 -
Struts2的环境需求
查看全部 -
MVC模式
查看全部 -
struts是流行和成熟的基于MVC设计模式的WEB应用程序框架
查看全部 -
@Struts2---定义与用途
Struts是什么?
Struts是流行和成熟的基于MVC设计模式的Web应用程序框架。
2.使用Struts的目的
为了帮助我们减少在运用MVC设计模型来开发Web应用时间。
查看全部 -
在add方法中添加
request.setAttribute("path","update");
在helloworld.xml中配置add对应的action结果路径
${request.path}
查看全部 -
动态方法调用:动态方法调用是为了解决一个Action对应多个请求的处理,以免Action太多。 三种方式:指定method属性、感叹号方式、通配符 1:繁杂不建议用(struts2.xml指明那个action执行那个method=add) <action name="add" method="add" class="com.Action.hellowAction"> <action name="update" method="update" class="com.Action.hellowAction"> 2:不建议用(!后接执行方法) <constant name="struts.enable.DynamicMethodInvocation" value="true"> </constant> <action name="hellowword" class="com.Action.hellowAction"> <result >/result.jsp</result> <result name="add">/add.jsp</result> <result name="update">/update.jsp</result> </action> http://localhost:8080/struts_hellowworld/aaa/hellowworld!xxx.action http://localhost:8080/struts_hellowworld/aaa/hellowworld!add.action http://localhost:8080/struts_hellowworld/aaa/hellowworld!update.action 3:常用的动态方法调用 (第一个*代表{1}第二个*={2}....) <constant name="struts.enable.DynamicMethodInvocation" value="false"> </constant> <action name="*_*" method="{2}" class="com.Action.{1}Action"> <result >/{2}.jsp</result> <result name="add">/{2}.jsp</result> <result name="update">/{2}.jsp</result> </action> http://localhost:8080/struts_hellowworld/aaa/hellow_add.action http://localhost:8080/struts_hellowworld/aaa/hellow_update.action
查看全部 -
<!-- 访问的后缀发生变化
value="html"时,访问的后缀就是hello_add.html
value的值为空时,访问就可以不加后缀 (不写这句话时也可以不加后缀名的访问)-->
方式一:写在struts.xml <constant ame="struts.action.extension" value="html"></constant>方式二:写在properties定义属性里
struts.action.extension=action,do
方式三:在web.xml中的struts2过滤器中初始化参数
<
init-param
>
<
param-name
>struts.action.extension</
param-name
>
<
param-value
>do</
param-value
>
</
init-param
>
查看全部
举报