1.Spring的自动装配
Spring有两种自动装配的方式(约定优先于配置):
根据名称自动装配:被注入的bean的id要与属性名称相同(保持一致),另外需要在beans里加入default-autowire="byName" 属性。
根据类型自动装配:只需在beans里加入default-autowire="byType" 属性。
2.Spring实例化容器的方式
引用
Resource resource=new FileSystemResource("beans.xml");
BeanFactory factory=new XmlBeanFactory(resource);
或
引用
ClassPathResource resource=new ClassPathResource("beans.xml");
BeanFactory factory=new XmlBeanFactroy(resource);
或
引用
BeanFactory factory=new ClassPathXmlApplicationContext("applicationContext.xml");
或在web容器中实例化spring容器
3.Spring实例化Bean的方式
1.使用类构造器的方式
引用
<bean id="orderService" class="com.yx.zzg.service.OrderServiceImpl"></bean>
2.使用静态工厂的方式
引用
<bean id="personService" class="com.yx.zzg.service.OrderFactory" factory-method=
"createOrder"
></bean>
public class OrderFactory{
public static OrderService createOrder(){
return new OrderService();
}
}
3.使用实例工厂方法实例化
4.Spring依赖注入方式
- 使用构造器注入
- 使用属性setter方法注入
- 使用Field注入(用于注解方式)
5.Spring与struts集成
1.在web.xml文件中加入:
<!--
指定Spring配置文件,默认从web根目录寻找配置文件,我们可以通过spring提供的classpath:前缀指定从类路径下寻找
-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- 配置struts -->
<servlet>
<servlet-name>struts</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>struts</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
2.如果action没有交给Spring来管理,我们可以通过下面的方式获取spring容器实例
WebApplicationContext ctx=WebApplicationContextUtils.getWebApplicationContext(this.getServlet().getServletContext());
3.如果action交给Spring来管理。
1.在spring容器里加入配置action
<bean name="/user" class="com.yx.zzg.action.OperUserAction">
<property name="operUserService" ref="operUserService"></property>
</bean>
注意:spring里面配置的bean的name一定要与struts里面的action名称保持一致
2.在struts配置文件加入以下配置
<!--
把控制器代理给spring来处理,获取action-->
<controller>
<set-property
value="org.springframework.web.struts.DelegatingRequestProcessor"
property="processorClass" />
</controller>
未完待续。。。。。