如何告诉struts2约定插件扫描包的所有子包。我试过了
<constant name="struts.convention.action.suffix" value="Controller" />
<constant name="struts.convention.package.locators.basePackage" value="fi.fpf.mvc" />
还有这个
<constant name="struts.convention.action.suffix" value="Controller" />
<constant name="struts.convention.package.locators.basePackage" value="fi.fpf.mvc.*" />
但它们不起作用。我的行动以 "Controller"
后缀。有人知道怎么做吗?
这是我的 struts.xml
:
<struts>
<constant name="struts.convention.exclude.parentClassLoader" value="true"/>
<constant name="struts.convention.action.fileProtocols" value="jar,vfs,vfsfile,vfszip"/>
<constant name="struts.convention.action.suffix" value="Controller" />
<constant name="struts.convention.package.locators.basePackage" value="fi.fpf.mvc" />
<package name="fpf-default" extends="struts-default">
<result-types>
<result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult" />
</result-types>
</package>
</struts>
还有一个动作:
@Action("indexController")
public class IndexController extends ActionSupport{
private static final long serialVersionUID = -2613425890762568273L;
@Action(value="loadIndex", results={
@Result(name="indexView", location = "indexView", type="tiles")
})
public String loadIndex() {
return "indexView";
}
}
1条答案
按热度按时间wtzytmuj1#
尝试
如果您使用的是约定插件,那么您应该遵循类名和包名约定。为什么不将一个基本包命名为“struts”或“struts2”,并使用默认的包定位器来定位它呢。类的名称也应该匹配
"Action"
后缀。您可以告诉约定插件使用属性忽略某些包
struts.convention.exclude.packages
. 您还可以告诉插件使用不同的字符串来使用属性来定位根包struts.convention.package.locators
. 最后,您可以告诉插件使用属性搜索特定的根包struts.convention.action.packages
.见文件。
或者,您可以设置与此包和基础下的任何包匹配的基础包和定位器