Struts2配置详解!
Struts2框架按照以下搜索顺序加载Struts2常量:
1.struts-default.xml---该文件保存在struts2-core-2.x.x.jar文件中
2.struts-pluugin.xml---在struts2一些插件jar包里,比如struts2-xxx-plugin-2.3.x.x.jar
3.struts.xml---Web应用默认的Struts2配置文件
4.struts.properties---Web应用默认的Struts2配置文件
5.web.xml--Web应用的配置文件
如果多个文件中配置同一个常量,则后者覆盖前者,常量的配置为两个属性,常量name和常量value
一、常量配置
Struts2中配置常量通常都是在struts.xml中配置,因为方便管理还有统一,当然也可以在struts.properties文件来配置,专门用作于struts2的常量配置文件,还有一种是在web.xml里配置
1.struts.xml-----通常推荐配置在这里
< struts > |
< constant name = "struts.i18n.encoding" value = "UTF-8" /> |
...... |
</ struts > |
2.struts.properties--<K-V>形式,K-name V-value
### 设置Web应用的字符编码 |
struts.i18n.encoding=UTF-8 |
3.web.xml-----未试验过
< filter > |
<!-- 定义核心Filter的名字和实现类 --> |
< filter-name >struts2</ filter-name > |
< filter-class >org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</ filter-class > |
|
< init-param > |
< param-name >struts.i18n.encoding</ param-name > |
< param-value >UTF-8</ param-value > |
</ init-param > |
</ filter > |
二、常量详解
< struts > |
<!-- 指定Web应用的默认编码集,相当于调用HttpServletRequest的setCharacterEncoding方法 --> |
< constant name = "struts.i18n.encoding" value = "UTF-8" /> |
|
<!-- |
该属性指定需要Struts 2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts2处理。 |
如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。 |
--> |
< constant name = "struts.action.extension" value = "do" /> |
|
<!-- 设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭 --> |
< constant name = "struts.serve.static.browserCache" value = "false" /> |
|
<!-- 当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),开发阶段最好打开 --> |
< constant name = "struts.configuration.xml.reload" value = "true" /> |
|
<!-- 开发模式下使用,这样可以打印出更详细的错误信息 --> |
< constant name = "struts.devMode" value = "true" /> |
|
<!-- 默认的视图主题 --> |
< constant name = "struts.ui.theme" value = "simple" /> |
|
<!-- spring 托管 --> |
< constant name = "struts.objectFactory" value = "spring" /> |
|
<!-- |
指定加载struts2配置文件管理器,默认为org.apache.struts2.config.DefaultConfiguration |
开发者可以自定义配置文件管理器,该类要实现Configuration接口,可以自动加载struts2配置文件。 |
--> |
< constant name = "struts.configuration" |
value = "org.apache.struts2.config.DefaultConfiguration" /> |
|
<!-- 设置默认的locale和字符编码 --> |
< constant name = "struts.locale" value = "zh_CN" /> |
< constant name = "struts.i18n.encoding" value = "GBK" /> |
|
<!-- 指定Struts的工厂类 --> |
< constant name = "struts.objectFactory" value = "spring" ></ constant > |
|
<!-- |
指定spring框架的装配模式,装配方式有: name, type, auto, and constructor (name |
是默认装配模式) |
--> |
< constant name = "struts.objectFactory.spring.autoWire" value = "name" /> |
|
<!-- 该属性指定整合spring时,是否对bean进行缓存,值为true or false,默认为true --> |
< cosntant name = "struts.objectFactory.spring.useClassCache" /> |
|
<!-- 指定类型检查,包含tiger和notiger --> |
< cosntant name = "struts.objectTypeDeterminer" value = "tiger" /> |
|
<!-- 该属性指定处理 MIME-type multipart/form-data,文件上传 --> |
< constant name = "struts.multipart.parser" value = "cos" /> |
< constant name = "struts.multipart.parser" value = "pell" /> |
< constant name = "struts.multipart.parser" value = "jakarta" /> |
|
<!-- 指定上传文件时的临时目录,默认使用 javax.servlet.context.tempdir --> |
< constant name = "struts.multipart.saveDir" value = "/tmpuploadfiles" /> |
|
<!-- 该属性指定Struts 2文件上传中整个请求内容允许的最大字节数 --> |
< constant name = "struts.multipart.maxSize" value = "2097152" /> |
|
<!-- |
该属性指定Struts2应用加载用户自定义的属性文件,该自定义属性文件指定的属性不会覆盖 |
struts.properties文件中指定的属性。如果需要加载多个自定义属性文件,多个自定义属性文 |
件的文件名以英文逗号(,)隔开。(也就是说不要改写struts.properties!) |
--> |
< constant name = "struts.custom.properties" |
value = "application,org/apache/struts2/extension/custom" /> |
|
<!-- |
指定请求url与action映射器,默认为org.apache.struts2.dispatcher.mapper.DefaultActionMapper |
--> |
< constant name = "struts.mapper.class" |
value = "org.apache.struts2.dispatcher.mapper.DefaultActionMapper" /> |
|
<!-- 指定action的后缀,默认为action --> |
< constant name = "struts.action.extension" value = "do" /> |
|
<!-- 被 FilterDispatcher使用指定浏览器是否缓存静态内容,测试阶段设置为false,发布阶段设置为true. --> |
< constant name = "struts.serve.static.browserCache" value = "true" /> |
|
<!-- 设置是否支持动态方法调用,true为支持,false不支持. --> |
< constant name = "struts.enable.DynamicMethodInvocation" value = "true" /> |
|
<!-- 设置是否可以在action中使用斜线,默认为false不可以,想使用需设置为true. --> |
< constant name = "struts.enable.SlashesInActionNames" value = "true" /> |
|
<!-- 是否允许使用表达式语法,默认为true. --> |
< constant name = "struts.tag.altSyntax" value = "true" /> |
|
<!-- 设置当struts.xml文件改动时,是否重新加载 --> |
< cosntant name = "struts.configuration.xml.reload" value = "true" /> |
|
<!-- 设置struts是否为开发模式,默认为false,测试阶段一般设为true. --> |
< cosntant name = "struts.devMode" value = "true" /> |
|
<!-- 设置是否每次请求,都重新加载资源文件,默认值为false. --> |
< cosntant name = "struts.i18n.reload" value = "false" /> |
|
<!-- 标准的UI主题,默认的UI主题为xhtml,可以为simple,xhtml或ajax --> |
< cosntant name = "struts.ui.theme" value = "xhtml" /> |
|
<!-- 模板目录 --> |
< cosntant name = "struts.ui.templateDir" value = "template" /> |
|
<!-- 设置模板类型. 可以为 ftl, vm, or jsp --> |
< cosntant name = "struts.ui.templateSuffix" value = "ftl" /> |
|
<!-- 定位velocity.properties 文件. 默认velocity.properties --> |
< cosntant name = "struts.velocity.configfile" value = "velocity.properties" /> |
|
<!-- 设置velocity的context. --> |
< cosntant name = "struts.velocity.contexts" value = "...." /> |
|
<!-- 定位toolbox --> |
< cosntant name = "struts.velocity.toolboxlocation" value = "...." /> |
|
<!-- 指定web应用的端口 --> |
< cosntant name = "struts.url.http.port" value = "80" /> |
|
<!-- 指定加密端口 --> |
< cosntant name = "struts.url.https.port" value = "443" /> |
|
<!-- 设置生成url时,是否包含参数.值可以为: none,get or all --> |
< cosntant name = "struts.url.includeParams" value = "get" /> |
|
<!-- 设置要加载的国际化资源文件,以逗号分隔. --> |
< cosntant name = "struts.custom.i18n.resources" value = "application" /> |
|
<!-- |
对于一些web应用服务器不能处理HttpServletRequest.getParameterMap(), 像 |
WebLogic,Orion, and OC4J等,须设置成true,默认为false. |
--> |
< cosntant name = "struts.dispatcher.parametersWorkaround" value = "false" /> |
|
<!-- 指定freemarker管理器 --> |
< cosntant name = "struts.freemarker.manager.classname" |
value = "org.apache.struts2.views.freemarker.FreemarkerManager" /> |
|
<!-- 设置是否对freemarker的模板设置缓存,效果相当于把template拷贝到 WEB_APP/templates. --> |
< cosntant name = "struts.freemarker.templatesCache" value = "false" /> |
|
<!-- 通常不需要修改此属性. --> |
< cosntant name = "struts.freemarker.wrapper.altMap" value = "true" /> |
|
<!-- 指定xslt result是否使用样式表缓存.开发阶段设为true,发布阶段设为false. --> |
< cosntant name = "struts.xslt.nocache" value = "false" /> |
|
<!-- 设置struts自动加载的文件列表. --> |
< cosntant name = "struts.configuration.files" |
value = "struts-default.xml,struts-plugin.xml,struts.xml" /> |
|
<!-- 设定是否一直在最后一个slash之前的任何位置选定namespace. --> |
< cosntant name = "struts.mapper.alwaysSelectFullNamespace" |
value = "false" /> |
</ struts > |
三、strust2配置详解
1.包配置:
<? xml version = "1.0" encoding = "UTF-8" ?> |
<!DOCTYPE struts PUBLIC |
"-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" |
|
< struts > |
<!-- 常量配置,用到constant标签 --> |
< constant name = "struts.i18n.encoding" value = "UTF-8" /> |
|
<!-- 包配置:一般都要继承struts-default,因为该包有默认的拦截器等东西 --> |
<!--namespace:命名空间,考虑到可能出现相同的action,如果有命名空间就可以解决 --> |
< package name = "default" namespace = "/user" extends = "struts-default" > |
|
<!-- 定义一个action --> |
< action name = "login" class = "cn.itcast.Action.LoginAction" method = "execute" > |
|
<!-- 返回一个String常量,转发至对应的JSP页面--> |
< result name = "success" >/welcome.jsp</ result > |
< result name = "login" >/login.jsp</ result > |
</ action > |
</ package > |
</ struts > |
常量配置:用到 constant 标签 ,name 和 value 两属性
命名空间: namespace=”/user”,http://localhost:8080/user/login.action 查找条件是优先到指定命名空间寻找对应的action,如果找到就用不再继续找,如果找不到,则到默认的命名空间找,否则报错
包含配置:<include>:如果应用规模逐渐增大,系统中的action也越来越多,导致struts.xml配置越来越臃肿,这时就可以考虑拆分struts.xml文件。
<? xml version = "1.0" encoding = "UTF-8" ?> |
<!DOCTYPE struts PUBLIC |
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" |
< struts > |
< include file = "test1.xml" /> |
< include file = "test2.xml" /> |
< include file = "test3.xml" /> |
</ struts > |
拦截器:可以在Action执行前或执行后启动,类似于过滤器,主要用到了AOP编程思想
< struts > |
<!-- 常量配置,用到constant标签 --> |
< constant name = "struts.i18n.encoding" value = "UTF-8" /> |
<!-- 包配置:一般都要继承struts-default,因为该包有默认的拦截器等东西 --> |
<!--namespace:命名空间,考虑到可能出现相同的action,如果有命名空间就可以解决 --> |
< package name = "default" namespace = "/user" extends = "struts-default" > |
|
< interceptors > |
|
<!--定义两个拦截器,权限检查和日志记录拦截器--> |
< interceptor name = "authority" class = "cn.java.AuthorityInterceptor" /> |
< interceptor name = "log" class = "cn.java.LogInterceptor" /> |
|
<!--定义一个拦截器栈,里面包含权限检查和日志记录拦截器--> |
< interceptor-stack name = "" > |
< interceptor-ref name = "authority" ></ interceptor-ref > |
< interceptor-ref name = "log" ></ interceptor-ref > |
</ interceptor-stack > |
</ interceptors > |
|
<!-- 定义一个action --> |
< action name = "login" class = "cn.java.Action.LoginAction" method = "execute" > |
|
<!-- 返回一个String常量,转发至对应的JSP页面--> |
< result name = "success" >/welcome.jsp</ result > |
< result name = "login" >/login.jsp</ result > |
|
<!-- 在Action中使用拦截器或拦截器栈方式都是一样的 --> |
< interceptor-ref name = "log" /> |
</ action > |
</ package > |
</
struts
>