struts.xml路径修改后的web配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>SSHBoot</display-name>
<!-- 方式一: -->
    <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:config/struts.xml</param-value>
    </context-param>
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
<!-- 方式二: -->
<!--         <init-param> -->
<!--             <param-name>cofig</param-name> -->
<!--             <param-value>classpath:config/struts.xml</param-value> -->
<!--         </init-param> -->
    </filter>

    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>FORWARD</dispatcher>
    </filter-mapping>

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
</web-app>

自测可以调用到我定义的action

原文地址:https://www.cnblogs.com/liaojie970/p/5110649.html