0

我将一些动作打包在 jar 文件中,并将这些文件放在 WEB-INF/lib 中。另外,我已经配置了 struts.convention.action.includeJars 常量。但我发现约定插件不会扫描 WEB-INF/lib 中的 jar。请参阅 org.apache.struts2.convention.PackageBasedActionConfigBuilder。

我的环境: - tomcat 6.0.5 - struts2.3.14.3 GA - spring 3.0.5

公约插件如何扫描我的罐子?是否有任何方法可以重用 jar 文件中的操作。

4

1 回答 1

0

struts2.3.14.3 GA 的约定插件有一个错误。

请看:链接

获取最新版本的 PackageBasedActionConfigBuilder,然后在 struts.xml 中添加这些:

<bean type="org.apache.struts2.convention.ActionConfigBuilder" name="ActionConfigBuilder_bugfix" class="bugfix.struts2.PackageBasedActionConfigBuilder" />
<constant name="struts.convention.actionConfigBuilder" value="ActionConfigBuilder_bugfix" />
于 2013-06-23T14:19:03.847 回答