-
配置action后缀的方式: 1.struts.xml: <constant name="struts.action.extension" value="extension"></constant> 2.web.xml的<filter>中: <init-param> <param-name>struts.action.extension</param-name> <param-value>do</param-value> </init-param> 3.struts.properties: struts.action.extension=action,do,struts2……查看全部
-
默认action: //声明默认action <default-action-ref name="actionName"></default-action-ref> //定义默认action <action name="actionName" method="..." class="..."> <result>objective.jsp</result> </action>查看全部
-
1.指定多个配置文件 <include file="fileName.xml"></include> 2.struts文件中添加<constant name="struts.i18n.encoding" value="UTF-8"></constant>以防乱码问题的出现查看全部
-
struts.xml用处查看全部
-
web.xml负责加载strutsPrepareandExcuteFilter,然后strutsPrepareandExcuteFilter加载struts.xml查看全部
-
这是自己要理解的东西查看全部
-
Struts.xml文件的通配符配置方式,建议使用查看全部
-
Struts.xml文件的配置标签解释查看全部
-
struts 2查看全部
-
struts是什么?为什么要使用Struts查看全部
-
struts2的课程目标查看全部
-
使用动态方法调用来解决一个Action对应多个请求的处理的三种方式: 1.指定method属性 2.感叹号方式(action名称 + ! + 方法名) 3.通配符方式(使用 * 作为通配符,可用于属性和JSP页面)查看全部
-
jsp+javaBean=Model 1 适用于小型网站的开发 jsp+Servlet+JavaBean=Model 2 最典型的MVC模式查看全部
-
对于之前把struts的后缀改了的,比如改为html,则在login.jsp中的action也要改为LoginAction.html查看全部
-
Action的搜索顺序查看全部
举报
0/150
提交
取消