首页 > 代码库 > Struts 2 动作注释 配置动作扩展
Struts 2 动作注释 配置动作扩展
动作注释
package com.yiibai.user.action;import org.apache.struts2.convention.annotation.Action;import org.apache.struts2.convention.annotation.Namespace;import org.apache.struts2.convention.annotation.Result;import org.apache.struts2.convention.annotation.ResultPath;import com.opensymphony.xwork2.ActionSupport;@Namespace("/User")@ResultPath(value="http://www.mamicode.com/")public class ValidateUserAction extends ActionSupport{ @Action(value="http://www.mamicode.com/Welcome", results={ @Result(name="success",location="pages/welcome_user.jsp") }) public String execute() { return SUCCESS; }}
配置动作扩展
<struts> <constant name="struts.action.extension" value="http://www.mamicode.com/html"/> //<constant name="struts.action.extension" value=""/>
<package name="default" namespace="/" extends="struts-default">
<action name="SayStruts2">
<result>pages/printStruts2.jsp</result>
</action>
</package>
</struts>
全局开关
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.enable.DynamicMethodInvocation" value="http://www.mamicode.com/false"/>
<constant name="struts.devMode" value="http://www.mamicode.com/false"/>
<constant name="struts.i18n.encoding" value="http://www.mamicode.com/UTF-8"/>
<constant name="struts.serve.static.browserCache " value="http://www.mamicode.com/false"/>
<include file="chapter1.xml"/>
</struts>
常用开关的介绍
<constant name="struts.i18n.encoding" value="http://www.mamicode.com/UTF-8"/>
指定Web应用的默认编码集,相当于调用HttpServletRequest的setCharacterEncoding方法
<constant name="struts.action.extension" value="http://www.mamicode.com/do"/>
该属性指定需要Struts 2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts 2处理。 如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。
<constant name="struts.serve.static.browserCache " value="http://www.mamicode.com/false"/>
设置浏览器是否缓存静态内容,默认值为true,开发阶段最好false
<constant name="struts.configuration.xml.reload" value="http://www.mamicode.com/true"/>
当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false,开发阶段最好true
<constant name="struts.devMode" value="http://www.mamicode.com/true"/>
开发模式下设为true,这样可以打印出更详细的错误信息
<constant name="struts.enable.DynamicMethodInvocation" value="http://www.mamicode.com/false"/>
动态方法调用,可以解决多个请求对应一个Servlet的问题,后面详细讲解,默认为true,关闭则设为false.
Struts 2 动作注释 配置动作扩展
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。