本文主要是介绍struts.xml与Web.xml的配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
- web.xml的配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"><!-- 前端控制器(FilterDispatcher),用于对Struts2框架进行初始化以及处理所有的请求 --><filter><!-- 配置Struts2核心Filter的名称 --><filter-name>struts2</filter-name><!-- 配置Struts2核心Filter的实现类 --><filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class><!-- 初始化参数的配置(可以选择配置,也可以选择不配置) --><!-- <init-param>参数名<param-name>actionPackages</param-name>参数值<param-value>org.apache.struts2.showcase.person</param-value></init-param> --></filter><filter-mapping><!-- 配置拦截器的名称 --><filter-name>struts2</filter-name><!-- 拦截所有的请求 --><url-pattern>/*</url-pattern></filter-mapping><welcome-file-list><!-- 默认的访问资源 --><welcome-file>index.jsp</welcome-file></welcome-file-list>
</web-app>
- struts.xml的配置
<?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.i18n.reload" value="false" /><constant name="struts.custom.i18n.resources" value="globalMessages" /><!-- 包含其他文件 --><include file="struts-chat.xml" /><include file="struts-validation.xml" /><include file="struts-continuation.xml" /><include file="struts-tags.xml" /><!-- 配置包元素 --><package name="default" extends="struts-default"><!-- 配置拦截器 --><interceptors><!-- 拦截器栈 --><interceptor-stack name="crudStack"><!-- 拦截器 --><interceptor-ref name="checkbox" /><interceptor-ref name="params" /><interceptor-ref name="static-params" /><interceptor-ref name="defaultStack" /></interceptor-stack></interceptors><!-- 配置Action --><action name="showCase"><result>success.jsp</result></action></package><!-- 配置employee包,并且制定命名空间为employee --><package name="employee" extends="default" namespace="/employee"><!-- 配置默认的;拦截器 --><default-interceptor-ref name="crudStack" /><!-- 配置Action,并且指定method --><action name="list"class="org.apache.struts2.showcase.action.EmployeeAction" method="list"><result>/success.jsp</result><!-- 设置拦截器 --><interceptor-ref name="basicStack" /></action></package>
</struts>
这篇关于struts.xml与Web.xml的配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!