我创建了带注释的struts 2(Struts 2.2版)应用程序。它不存在 struts.xml
文件,并且所有内容都正常工作。
现在我需要将struts版本更新到2.3.15。版本更新后,Struts映射不起作用。我使用的是struts2-convention-plugin-2.3.15.jar。
我的 web.xml
此处
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>test</display-name>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
<init-param>
<param-name>actionPackages</param-name>
<param-value>com.mypackages</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.action</url-pattern>
</filter-mapping>
使用此struts版本进行注释的任何新配置?