是否可以在不同的struts.xml文件中使用相同的命名空间?我知道我们可以使用不同的命名空间。问题是,我的配置文件中有很多操作。我只想分开以便轻松管理。但是如果我为每个文件使用不同的命名空间,我必须修改到处提到的命名空间(JSP)。
对于前。
我想在所有struts.xml文件中使用 namespace =“/”。
我希望你明白我要说的话。这可能或任何其他相关的简单方法来实现这一目标吗?
提前致谢
答案 0 :(得分:0)
您绝对可以使用具有相同命名空间的多个包。只记得包不能有相同的名字。您还需要将它们全部包含在主struts.xml中,如:
<include file="path to your config files"/>
答案 1 :(得分:0)
<struts>
<!-- Other information goes here -->
<include file = "Administrator-Config.xml"/>
<include file = "CustomerConfig.xml"/>
<include file = "EmployerConfig.xml"/>
<!-- Other information goes here -->
</struts>