解决了。
希望这对其他人有帮助,
我要做的就是更改
web.xml如下:
<filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <session-config>
之前我将过滤器设置为
<filter-mapping> <filter-name>struts2</filter-name> <url-pattern>*.action</url-pattern> </filter-mapping> <session-config>
因此 struts2-jquery标记 找不到对应的 .js 文件
解决方案:从更改
<url-pattern>*.action</url-pattern>为。
<url-pattern>/*</url-pattern>因此,请确保检查
web.xml,这些异常通常被我忽略。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)