怎么调用多个配置文件,
在struts.xml中配置的信息;
<struts>
<include file="welcome.xml"></include>
<include file="helloWorld.xml"></include>
</struts>
在welcome.xml文件配置信息;
<struts>
<package name="wel" namespace="/welcome" extends="struts-default">
<action name="hello " method= "divide" class="com.lang.welcome.Welcome">
<result>/welcome.jsp</result>
</action>
</package>
</struts>
在helloWorld.xml中的配置信息;
<package name="default" namespace="/action" extends="struts-default">
<action name="*_*" method="{2}" class="com.lang.strutsDemo.{1}">
<result>/{2}.jsp</result>
</action>
只能显示helloworld.xml中配置的信息界面,
怎么改都显示不了 welcome.xml中的信息界面,
请问怎么改才能显示?