struts2修改默认后缀

来源:互联网 发布:mysql 触发器 性能 编辑:程序博客网 时间:2024/05/11 03:46

优秀的MVC框架struts2提供了3种方法可以修改默认的action后缀

方法一:在web.xml中配置

<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">  <filter>    <filter-name>struts2</filter-name>    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>    <init-param>        <param-name>struts.action.extension</param-name>        <param-value>action,do,</param-value>    </init-param>  </filter>  <filter-mapping>    <filter-name>struts2</filter-name>    <url-pattern>/*</url-pattern>  </filter-mapping></web-app>

方法二:在struts.xml中配置

<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"    "http://struts.apache.org/dtds/struts-2.3.dtd"><struts>    <constant name="struts.action.extension" value="do,action,"></constant>    <package name="default" namespace="/" extends="struts-default">    </package></struts>

方法三:在struts.properties中配置

struts.action.extension=do,action,
0 0