Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解

时间:2021-10-08 14:53:44

1) struts-default.xml

这个文件是struts2框架默认加载的配置文件。它定义struts2一些核心的bean和拦截器。 

Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解<?xml version="1.0" encoding="UTF-8" ?>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!DOCTYPE struts PUBLIC
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    "http://struts.apache.org/dtds/struts-2.0.dtd"
>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<struts>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!--struts2中工厂bean的定义-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="com.opensymphony.xwork2.ObjectFactory" name="xwork" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.ObjectFactory" name="struts" class="org.apache.struts2.impl.StrutsObjectFactory" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.ActionProxyFactory" name="xwork" class="com.opensymphony.xwork2.DefaultActionProxyFactory"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.ActionProxyFactory" name="struts" class="org.apache.struts2.impl.StrutsActionProxyFactory"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!--类型检测bean的定义-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.util.ObjectTypeDeterminer" name="tiger" class="com.opensymphony.xwork2.util.GenericsObjectTypeDeterminer"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.util.ObjectTypeDeterminer" name="notiger" class="com.opensymphony.xwork2.util.DefaultObjectTypeDeterminer"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.util.ObjectTypeDeterminer" name="struts" class="com.opensymphony.xwork2.util.DefaultObjectTypeDeterminer"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!--文件上传bean的定义-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="struts" class="org.apache.struts2.dispatcher.mapper.DefaultActionMapper" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="composite" class="org.apache.struts2.dispatcher.mapper.CompositeActionMapper" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="restful" class="org.apache.struts2.dispatcher.mapper.RestfulActionMapper" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="restful2" class="org.apache.struts2.dispatcher.mapper.Restful2ActionMapper" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.dispatcher.multipart.MultiPartRequest" name="struts" class="org.apache.struts2.dispatcher.multipart.JakartaMultiPartRequest" scope="default" optional="true"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.dispatcher.multipart.MultiPartRequest" name="jakarta" class="org.apache.struts2.dispatcher.multipart.JakartaMultiPartRequest" scope="default" optional="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!--标签库bean的定义-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.views.TagLibrary" name="s" class="org.apache.struts2.views.DefaultTagLibrary" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!--一些常用视图bean的定义-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="org.apache.struts2.views.freemarker.FreemarkerManager" name="struts" optional="true"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="org.apache.struts2.views.velocity.VelocityManager" name="struts" optional="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="org.apache.struts2.components.template.TemplateEngineManager" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.components.template.TemplateEngine" name="ftl" class="org.apache.struts2.components.template.FreemarkerTemplateEngine" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.components.template.TemplateEngine" name="vm" class="org.apache.struts2.components.template.VelocityTemplateEngine" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="org.apache.struts2.components.template.TemplateEngine" name="jsp" class="org.apache.struts2.components.template.JspTemplateEngine" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!--类型转换bean的定义-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.util.XWorkConverter" name="xwork1" class="com.opensymphony.xwork2.util.XWorkConverter" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.util.XWorkConverter" name="struts" class="com.opensymphony.xwork2.util.AnnotationXWorkConverter" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.TextProvider" name="xwork1" class="com.opensymphony.xwork2.TextProviderSupport" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean type="com.opensymphony.xwork2.TextProvider" name="struts" class="com.opensymphony.xwork2.TextProviderSupport" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<!--  Struts2中一些可以静态注入的bean,也就是不需要实例化的 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="com.opensymphony.xwork2.ObjectFactory" static="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="com.opensymphony.xwork2.util.XWorkConverter" static="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="com.opensymphony.xwork2.util.OgnlValueStack" static="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="org.apache.struts2.dispatcher.Dispatcher" static="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="org.apache.struts2.components.Include" static="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="org.apache.struts2.dispatcher.FilterDispatcher" static="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="org.apache.struts2.views.util.ContextUtil" static="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<bean class="org.apache.struts2.views.util.UrlHelper" static="true" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 定义Struts2默认包-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<package name="struts-default" abstract="true">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
<!-- 结果类型的种类-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解        
<result-types>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="chain" class="com.opensymphony.xwork2.ActionChainResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="dispatcher" class="org.apache.struts2.dispatcher.ServletDispatcherResult" default="true"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="freemarker" class="org.apache.struts2.views.freemarker.FreemarkerResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="httpheader" class="org.apache.struts2.dispatcher.HttpHeaderResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="redirect" class="org.apache.struts2.dispatcher.ServletRedirectResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="redirectAction" class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="stream" class="org.apache.struts2.dispatcher.StreamResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="velocity" class="org.apache.struts2.dispatcher.VelocityResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="xslt" class="org.apache.struts2.views.xslt.XSLTResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="plainText" class="org.apache.struts2.dispatcher.PlainTextResult" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="redirect-action" class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<result-type name="plaintext" class="org.apache.struts2.dispatcher.PlainTextResult" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解        
</result-types>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!--struts2中拦截器的定义-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解        
<interceptors>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解        
<!--实现在不同请求中相似参数别名的准换-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="alias" class="com.opensymphony.xwork2.interceptor.AliasInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--与Spring整合时自动装配的拦截器-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="autowiring" class="com.opensymphony.xwork2.spring.interceptor.ActionAutowiringInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--构建一个action链,使当前action可以访问前一个action,与<result-type="chain" Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解/>配合使用-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="chain" class="com.opensymphony.xwork2.interceptor.ChainingInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--负责类型转换的拦截器-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="conversionError" class="org.apache.struts2.interceptor.StrutsConversionErrorInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--使用配置的name,value来是指cookies -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="cookie" class="org.apache.struts2.interceptor.CookieInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解           
<!--负责创建httpSession-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="createSession" class="org.apache.struts2.interceptor.CreateSessionInterceptor" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--输出调试信息-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="debugging" class="org.apache.struts2.interceptor.debugging.DebuggingInterceptor" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--扩展引用-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="externalRef" class="com.opensymphony.xwork2.interceptor.ExternalReferencesInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--后台执行action负责发送等待画面给用户-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="execAndWait" class="org.apache.struts2.interceptor.ExecuteAndWaitInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--异常处理-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="exception" class="com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--文件上传,解析表单域的内容-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="fileUpload" class="org.apache.struts2.interceptor.FileUploadInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--支持国际化-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="i18n" class="com.opensymphony.xwork2.interceptor.I18nInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解           
<!--日志记录-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="logger" class="com.opensymphony.xwork2.interceptor.LoggingInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--模型拦截器,当action实现了ModelDriven接口时,负责把getModel的结果放入valueStack中-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="modelDriven" class="com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--有生命周期的ModelDriven-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="scopedModelDriven" class="com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--负责解析请求中的参数,并赋值给action中对应的属性-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="params" class="com.opensymphony.xwork2.interceptor.ParametersInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--实现该Preparable接口的action,会调用拦截器的prepare方法-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="prepare" class="com.opensymphony.xwork2.interceptor.PrepareInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--负责将action 标签下的param参数值传递给action实例-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="staticParams" class="com.opensymphony.xwork2.interceptor.StaticParametersInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--范围转换-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="scope" class="org.apache.struts2.interceptor.ScopeInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--用于访问Servlet API-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="servletConfig" class="org.apache.struts2.interceptor.ServletConfigInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="sessionAutowiring" class="org.apache.struts2.spring.interceptor.SessionContextAutowiringInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--输出action执行时间-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="timer" class="com.opensymphony.xwork2.interceptor.TimerInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--防止表单重复提交-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="token" class="org.apache.struts2.interceptor.TokenInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--与token拦截器相似,只是把token保存到HttpSession-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="tokenSession" class="org.apache.struts2.interceptor.TokenSessionStoreInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--负责表单字段的验证 *-validation.xml-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="validation" class="org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--负责执行action的validate()-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="workflow" class="com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--存储和重新获取Action 消息/错误/字段错误为Action,实现ValidationAware接口到seesion-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="store" class="org.apache.struts2.interceptor.MessageStoreInterceptor" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--添加自动checkbox处理代码,这样检探测checkbox和添加它作为一个参数使用默认值(通常’false’).使用一个指定名字隐藏字段探测没提交的checkbox-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="checkbox" class="org.apache.struts2.interceptor.CheckboxInterceptor" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="profiling" class="org.apache.struts2.interceptor.ProfilingActivationInterceptor" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--JAAS服务拦截器-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="roles" class="org.apache.struts2.interceptor.RolesInterceptor" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!-- 一个基本的拦截器栈 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="basicStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="exception"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="servletConfig"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="prepare"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="checkbox"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="params"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="conversionError"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!-- 简单的validtion和webflow栈 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="validationWorkflowStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="basicStack"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="validation"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="workflow"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!-- 文件上传的拦截器栈 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="fileUploadStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="fileUpload"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="basicStack"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!-- model-driven 栈  -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="modelDrivenStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="modelDriven"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="basicStack"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!-- action链的拦截器栈 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="chainStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="chain"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="basicStack"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--  i18n 拦截器栈 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="i18nStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="i18n"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="basicStack"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!-- 结合preparable和ModenDriven拦截器-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="paramsPrepareParamsStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="exception"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="alias"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="params"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="servletConfig"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="prepare"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="i18n"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="chain"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="modelDriven"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="fileUpload"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="checkbox"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="staticParams"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="params"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="conversionError"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="validation">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                    
<param name="excludeMethods">input,back,cancel</param>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="workflow">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                    
<param name="excludeMethods">input,back,cancel</param>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<!--定义默认的拦截器栈  -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="defaultStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="exception"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="alias"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="servletConfig"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="prepare"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="i18n"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="chain"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="debugging"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="profiling"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="scopedModelDriven"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="modelDriven"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="fileUpload"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="checkbox"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="staticParams"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="params">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                  
<param name="excludeParams">dojo/..*</param>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="conversionError"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="validation">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                    
<param name="excludeMethods">input,back,cancel,browse</param>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="workflow">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                    
<param name="excludeMethods">input,back,cancel,browse</param>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="completeStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="defaultStack"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor-stack name="executeAndWaitStack">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="execAndWait">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                    
<param name="excludeMethods">input,back,cancel</param>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="defaultStack"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
<interceptor-ref name="execAndWait">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                    
<param name="excludeMethods">input,back,cancel</param>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解                
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="external-ref" class="com.opensymphony.xwork2.interceptor.ExternalReferencesInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="model-driven" class="com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="static-params" class="com.opensymphony.xwork2.interceptor.StaticParametersInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="scoped-model-driven" class="com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="servlet-config" class="org.apache.struts2.interceptor.ServletConfigInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解            
<interceptor name="token-session" class="org.apache.struts2.interceptor.TokenSessionStoreInterceptor"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解       
</interceptors>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!--定义默认拦截器为"defaultStack"-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解        
<default-interceptor-ref name="defaultStack"/>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解    
</package>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</struts>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解

 

2) struts.xml

该文件也是struts2框架自动加载的文件,在这个文件中可以定义一些自己的action,interceptorpackage等,该文件的package 通常继承struts-default包。下面是这个文件的格式。

struts.properties文件

Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解<?xml version="1.0" encoding="GBK"?>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面指定Struts 2配置文件的DTD信息 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!DOCTYPE struts PUBLIC
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解"http://struts.apache.org/dtds/struts-2.0.dtd"
>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- struts是Struts 2配置文件的根元素 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<struts>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<constant name="" value="" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<bean type="" name="" class="" scope="" static="" optional="" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<include file="" />
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- package元素是Struts配置文件的核心,该元素可以出现0次,或者无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<package name="必填的包名" extends="" namespace="" abstract=""
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解externalReferenceResolver
>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 该元素可以出现,也可以不出现,最多出现一次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<result-types>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 该元素必须出现,可以出现无限多次-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<result-type name="" class="" default="true|false">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</result-type>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</result-types>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 该元素可以出现,也可以不出现,最多出现一次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<interceptors>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 该元素的interceptor元素和interceptor-stack至少出现其中之一,
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解也可以二者都出现 
-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<interceptor name="" class="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</interceptor>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<interceptor-stack name="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 该元素必须出现,可以出现无限多次-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<interceptor-ref name="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</interceptor-stack>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</interceptors>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<default-interceptor-ref name="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</default-interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<default-action-ref name="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</default-action-ref>?
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<global-results>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 该元素必须出现,可以出现无限多次-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<result name="" type="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 该字符串内容可以出现0次或多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解映射资源
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</result>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</global-results>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<global-exception-mappings>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 该元素必须出现,可以出现无限多次-->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<exception-mapping name="" exception="" result="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解异常处理资源
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</exception-mapping>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</global-exception-mappings>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<action name="" class="" method="" converter="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<result name="" type="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解映射资源
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</result>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<interceptor-ref name="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</interceptor-ref>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<exception-mapping name="" exception="" result="">
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解异常处理资源
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<!-- 下面元素可以出现0次,也可以无限多次 -->
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<param name="参数名">参数值</param>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</exception-mapping>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</action>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
</package>*
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
<struts>
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解


3) default.properties
这个文件是struts2框架的全局属性文件,也是自动加载的文件。该文件包含了系列的key-value对。该文件完全可以配置在struts.xml文件中,使用constant元素。下面是这个文件中一些常见的配置项及说明。
 

Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定加载struts2配置文件管理器,默认为org.apache.struts2.config.DefaultConfiguration
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 开发者可以自定义配置文件管理器,该类要实现Configuration接口,可以自动加载struts2配置文件。
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解# struts.configuration
=org.apache.struts2.config.DefaultConfiguration
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置默认的locale和字符编码
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解# struts.locale
=en_US
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.i18n.encoding
=UTF-8
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定struts的工厂类
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解# struts.objectFactory 
= spring
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定spring框架的装配模式
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 装配方式有: name
, type, auto, and constructor (name 是默认装配模式)
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.objectFactory.spring.autoWire 
= name
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 该属性指定整合spring时,是否对bean进行缓存,值为true or false
,默认为true.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.objectFactory.spring.useClassCache 
= true
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定类型检查
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解#struts.objectTypeDeterminer 
= tiger
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解#struts.objectTypeDeterminer 
= notiger
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 该属性指定处理 MIME-type multipart/form-data,文件上传
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解# struts.multipart.parser
=cos
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解# struts.multipart.parser
=pell
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.multipart.parser
=jakarta
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解# 指定上传文件时的临时目录,默认使用 javax.servlet.context.tempdir 
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.multipart.saveDir
=
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.multipart.maxSize
=2097152
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 加载自定义属性文件 (不要改写struts.properties!)
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解# struts.custom.properties
=application,org/apache/struts2/extension/custom
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定请求url与action映射器,»˜认为org.apache.struts2.dispatcher.mapper.DefaultActionMapper
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解#struts.mapper.class
=org.apache.struts2.dispatcher.mapper.DefaultActionMapper
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定action的后缀,默认为action
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.action.extension
=action
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 被 FilterDispatcher使用
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 如果为 true 则通过jar文件提供静态内容服务. 
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 如果为 false 则静态内容必须位于 <context_path>/struts
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.serve.static
=true
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 被 FilterDispatcher使用
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定浏览器是否缓存静态内容,测试阶段设置为false,发布阶段设置为true.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.serve.static.browserCache
=true
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置是否支持动态方法调用,true为支持,false不支持.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.enable.DynamicMethodInvocation 
= true
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置是否可以在action中使用斜线,默认为false不可以,想使用需设置为true.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.enable.SlashesInActionNames 
= false
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 是否允许使用表达式语法,默认为true.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.tag.altSyntax
=true
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置当struts.xml文件改动时,是否重新加载.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### - struts.configuration.xml.reload 
= true
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置struts是否为开发模式,默认为false
,测试阶段一般设为true.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.devMode 
= false
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置是否每次请求,都重新加载资源文件,默认值为false.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.i18n.reload
=false
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解###标准的UI主题
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 默认的UI主题为xhtml
,可以为simple,xhtml或ajax
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.ui.theme
=xhtml
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解###模板目录
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.ui.templateDir
=template
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解#设置模板类型. 可以为 ftl
, vm, or jsp
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.ui.templateSuffix
=ftl
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解###定位velocity.properties 文件.  默认 velocity.properties
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.velocity.configfile 
= velocity.properties
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置velocity的context.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.velocity.contexts 
=
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 定位toolbox.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.velocity.toolboxlocation
=
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定web应用的端口.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.url.http.port 
= 80
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定加密端口
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.url.https.port 
= 443
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置生成url时,是否包含参数.值可以为: none
, get or all
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.url.includeParams 
= get
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置要加载的国际化资源文件,以逗号分隔.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解# struts.custom.i18n.resources
=testmessages,testmessages2
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 对于一些web应用服务器不能处理HttpServletRequest.getParameterMap()
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 像 WebLogic
, Orion, and OC4J等,须设置成true,默认为false.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.dispatcher.parametersWorkaround 
= false
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定freemarker管理器
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解#struts.freemarker.manager.classname
=org.apache.struts2.views.freemarker.FreemarkerManager
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置是否对freemarker的模板设置缓存
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 效果相当于把template拷贝到 WEB_APP/templates.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.freemarker.templatesCache
=false
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 通常不需要修改此属性.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.freemarker.wrapper.altMap
=true
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 指定xslt result是否使用样式表缓存.开发阶段设为true
,发布阶段设为false.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.xslt.nocache
=false
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设置struts自动加载的文件列表.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.configuration.files
=struts-default.xml,struts-plugin.xml,struts.xml
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解### 设定是否一直在最后一个slash之前的任何位置选定namespace.
Struts2中有关struts-default.xml,struts.xml,struts.properties文件详解struts.mapper.alwaysSelectFullNamespace
=false