Struts2和Spring是如何集成在一起的?
Struts2以插件的形式支持Spring这个IoC容器,由StrutsSpringObjectFactory来创建Action对象并注入依赖关系,这是不是就算是Stru...
Struts2以插件的形式支持Spring这个IoC容器,由StrutsSpringObjectFactory来创建Action对象并注入依赖关系,这是不是就算是Struts2和Spring集成了?
Struts2已经是WEB显示层的框架了,而持久化层由Hibernate支持,剩下的一个就是ioc容器,由Spring来创建对象并注入依赖关系,这就是Spring+Struts2+Hibernate集成了,我说的对吗? 展开
Struts2已经是WEB显示层的框架了,而持久化层由Hibernate支持,剩下的一个就是ioc容器,由Spring来创建对象并注入依赖关系,这就是Spring+Struts2+Hibernate集成了,我说的对吗? 展开
3个回答
推荐于2017-09-03 · 知道合伙人数码行家
关注
展开全部
代码如下,根据具体需要添加:
web.xml
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
</web-app>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
</web-app>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询