如果是在struts-config.xml中直接写为 <plug-in className="org.springframework.web.struts.ContextLoaderPlugIn"/> ,则是默认配置文件为在WEB-INF下的action-servlet.xml文件,可在action-servlet.xml中再截入各个action bean的配置,如<import resource="modules/spring-config-login.xml"/>等。
另外service的配置和applicationContext.xml或sping相关的数据库文件,可自己建立一个目录,然后在web.xml中加载 <context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:spring/*.xml</param-value>
</context-param>
这样将web层和service层的配置分开摆放,看起来比较清晰。具体可参考springside的example
另一方法是struts-config中直接写 <plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="classpath*:spring/*.xml"/>
</plug-in>
这样将所有的配置文件直接放在spring目录下
或小型应用可简单写成最直接的<plug-in className= "org.springframework.web.struts.ContextLoaderPlugIn"> <set-property property= "contextConfigLocation" value="/WEB-INF/applicationContext.xml"/>
不过多句提醒下记得不要漏了web.xml中还应有 <listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
struts-config.xml中还应有:
<controller>
<set-property property="processorClass" value="org.springframework.web.struts.DelegatingRequestProcessor"/>
</controller>
posted on 2007-06-15 12:16
lzj520 阅读(255)
评论(0) 编辑 收藏 所属分类:
Spring 、
个人学习日记