Struts2配置文件模板

简介: 参数值 参数值 参数值 参数值 参数值 映射资...

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

若转载请注明出处!若有疑问,请回复交流!
目录
相关文章
|
6月前
|
数据库
最全三大框架整合(使用映射)——struts.xml和web.xml配置
最全三大框架整合(使用映射)——数据库资源文件jdbc.properties
|
11月前
|
Java
application.properties模板+application.yml模板+pom模板+mapper.xml模板(springboot)
application.properties模板+application.yml模板+pom模板+mapper.xml模板(springboot)
74 0
|
XML 前端开发 JavaScript
SpringMVC之web.xml,了解必要配置项
SpringMVC之web.xml,了解必要配置项
245 0
SpringMVC之web.xml,了解必要配置项
|
关系型数据库 Java 数据库连接
|
Windows Java 开发工具
Struts2 资源配置文件国际化
Struts2 资源配置文件国际化Struts2资源文件的命名规范:basename_language_country.propertiesStruts2国际化如果系统同时存在资源文件、类文件,系统将以类文件为主,而不会调用资源文件。
842 0