spring将service注入到Action中
spring与struts1.x集成
方式一:Action交给spring管理,将业务类注入action
引入
spring-webmvc-struts.jar包到lib下,
struts-config.xml配置:
<action name="StudentForm" path="/StudentList"
parameter="actions"
type="org.springframework.web.struts.DelegatingActionProxy">
<forward name="list" path="/userList.jsp"/>
</action>
spring配置applicationContext.xml:
<bean name="/StudentList" class="com.org.momo.action.StudentAction" scope="prototype">
<property name="studentService" ref="studentService" />
</bean>
注意:保持spring配置的bean name和struts配置的action path一致
StudentAction.java:
private StudentService studentService ;
public StudentService getStudentService() {
return studentService;
}
public void setStudentService(StudentService studentService) {
this.studentService = studentService;
}
注意:加入上面applicationContext.xml里面的action移到applicationContext-action.xml里面时,
1.需在sturts-config.xml配置applicationContext-action.xml加载路径
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="classpath*:applicationContext-struts.xml" />
</plug-in>
方式二:请求首先交给ActionServlet,然后给org.springframework.web.struts.DelegatingRequestProcessor,由这个请求处理器根据请求路径从spring容器获取action对象
struts-config.xml:
<action path="/searchAction">
<!--注意到没有?这里没有配置type属性-->
<forward name="success" path="/result.jsp"/>
</action>
<controller>
<set-property property="processorClass" value="org.springframework.web.struts.DelegatingRequestProcessor"/>
</controller>
spring配置applicationContext.xml:
<bean name="/searchAction" class="com.myproject.action.SearchAction" scope="prototype">
<property name="searchService" ref="searchService"/>
</bean>
方式三:Action不交给spring管理,直接在Action中实例化应用上下文,然后通过getBean("xxx"),获取相应业务对象
struts配置struts-config.xml:
<action path="/searchAction" type="com.myproject.action.SearchAction">
<forward name="success" path="/result.jsp"/>
</action>
<action path="/searchAction" type="com.myproject.action.SearchAction">
<forward name="success" path="/result.jsp"/>
</action>
对应的Action处理类:
Actionprivate ApplicationContext context=WebApplicationContextUtils.getWebApplicationContext(this.getServlet().getServletContext());
SearchService searchService=(SearchService)context.getBean("searchService");
private ApplicationContext context=WebApplicationContextUtils.getWebApplicationContext(this.getServlet().getServletContext());
SearchService searchService=(SearchService)context.getBean("searchService");
struts2.x与spring集成
struts.properties 配置
struts.objectFactory=spring #指定struts的action类实例由spring生成
struts-config.xml配置
<action name="search" class="searchAction" method="searchMax">
<result name="success">/result.jsp</result>
<result name="error">/error.jsp</result>
</action>
spring配置文件applicationContext.xml:
<bean id="searchAction" class="com.myproject.action.SearchAction" scope="prototype">
<property name="searchService" ref="searchService"/>
</bean>
<action name="search" class="searchAction" method="searchMax">
<result name="success">/result.jsp</result>
<result name="error">/error.jsp</result>
</action>
分享到:
相关推荐
S2SH框架,即Struts2、Spring和Hibernate的集成,是Java Web开发中的经典组合,它将MVC模式、依赖注入和持久化管理有效地融合在一起,提供了强大的功能和灵活性。本文将详细阐述如何使用S2SH框架搭建一个登录实例。 ...
Struts1、Spring2和Hibernate3是Java Web开发中的三个重要框架,它们分别负责MVC模式的展现层、业务层和服务层的管理。这个“Struts1 + Spring2 + Hibernate3 无冲突jar包”集合了这三个框架的核心库,旨在为开发者...
- **Spring**:Spring框架的核心功能是依赖注入(DI)和面向切面编程(AOP)。依赖注入使得对象之间的依赖关系可以在运行时动态地解决,降低了组件之间的耦合度。面向切面编程则提供了一种处理横切关注点的方法,如...
SSH框架,全称为Struts2 + Spring + Hibernate,是Java Web开发中常用的一种集成框架,它结合了Struts2的MVC设计模式、Spring的IoC(Inversion of Control,控制反转)和AOP(Aspect-Oriented Programming,面向切面...
3. `testString`方法的输出是2,因为`s1`和`s2`虽然内容相同,但它们是两个不同的对象,因此`s1 == s2`为假,而`s1.equals(s2)`为真。 4. 在Hibernate中,用`<set>`元素映射Customer类中的orders属性,以表示一对多...
- **DI**(Dependency Injection,依赖注入)是IoC的一种实现方式,它通过构造器、setter方法等方式将依赖注入到对象中。 - **接口注入**:通过实现特定接口来注入依赖。例如,Spring框架中的`@Autowired`注解。 ##...