怎样使用spring与struts结合
Spring与Struts集成分静态和动态,静态是在Web文件里配置,动态在Struts文件里配置,其主要是XML配置。
Web文件配置{
<!--静态加载spring-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<!--监听器,监听动态的spring-->
<listener>
<listener-class>
.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
}
Struts-config.xml文件配置{
<!--告诉spring替管struts的action-->
<controller>
<set-property property="processorClass" value=&.springframework.web.struts.DelegatingRequestProcessor"/>
</controller>
<message-resources parameter="ApplicationResources"/>
<!--动态加载spring-->
<plug-in className=&.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="/WEB-INF/spring-servlet.xml"/>
</plug-in>
}
静态Spring配置放在AplactionContext.xml中,动态Spring配置放在****-Servlet.xml中。
Action使用有两种,一种继承Spring提供的Action,这种有代码污染,还有一种是让Spring替管Struts的Action。
下面这句话在servlet的xml文件中是什么意思
说的简单点,应该是web.xml中的配置,用来整合Spring框架的。
web容器启动时,需要加载整合框架的模块,其中一个模块类中有一个属性的名字是contextConfigLocation,给它赋值,classpath:applicationContext-*.xml。
ApplicationContext.xml 在什么地方
web.xml中classpath:和classpath*: 有什么区别?
classpath:只会到你的class路径中查找找文件;
classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找.
存放位置:
1:src下面
需要在web.xml中定义如下:
contextConfigLocation
classpath:applicationContext.xml
< /context-param>
2:WEB-INF下面
需要在web.xml中定义如下:
contextConfigLocation
WEB-INF/applicationContext*.xml
< /context-param>
web.xml 通过contextConfigLocation配置spring 的方式
SSI框架配置文件路径问题:
struts2的 1个+N个 路径:src+src(可配置) 名称: struts.xml + N
spring 的 1个 路径: src 名称: applicationContext.xml
ibatis 的 1个+N个 路径: src+src(可配置) 名称: SqlMapConfig.xml + N
部署到tomcat后,src目录下的配置文件会和class文件一样,自动copy到应用的 classes目录下
spring的 配置文件在启动时,加载的是web-info目录下的applicationContext.xml,
运行时使用的是web-info/classes目录下的applicationContext.xml。
配置web.xml使这2个路径一致:
contextConfigLocation
/WEB-INF/classes/applicationContext.xml
< /context-param>
多个配置文件的加载
contextConfigLocation
classpath*:conf/spring/applicationContext_core*.xml,
classpath*:conf/spring/applicationContext_dict*.xml,
classpath*:conf/spring/applicationContext_hibernate.xml,
classpath*:conf/spring/applicationContext_staff*.xml,
classpath*:conf/spring/applicationContext_security.xml
classpath*:conf/spring/applicationContext_modules*.xml
classpath*:conf/spring/applicationContext_cti*.xml
classpath*:conf/spring/applicationContext_apm*.xml
contextConfigLocation 参数定义了要装入的 Spring 配置文件。
首先与Spring相关的配置文件必须要以"applicationContext-"开头,要符合约定优于配置的思想,这样在效率上和出错率上都要好很多。
还有最好把所有Spring配置文件都放在一个统一的目录下,如果项目大了还可以在该目录下分模块建目录。
这样程序看起来不会很乱。
在web.xml中的配置如下:
Xml代码
< param-name>contextConfigLocation
< param-value>classpath*:**/applicationContext-*.xml
< /context-param>
"**/"表示的是任意目录;
"**/applicationContext-*.xml"表示任意目录下的以"applicationContext-"开头的XML文件。
你自己可以根据需要修改。
最好把所有Spring配置文件都放在一个统一的目录下,如:
contextConfigLocation
classpath:/spring/applicationContext-*.xml
< /context-param>contextconfiglocation怎么是使用全局
你在配置dispatcherServlet时,还是把contextConfigLocation删了吧。
contextConfigLocation配置在两个地方context-param 2 param-value要想加载全部xml文件,在配置contextConfigLocation时,classpath:spring*.xml,*.xml这样配置。
会简略一点。