spring IoC——用配置文件实现

目录

说明

本例子不是web项目,主要内容是依赖注入的配置实现。

总的配置

配置文件,代码片.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd"

	default-autowire="constructor" 
	default-init-method="defautInit" default-destroy-method="defaultDestroy">

	<!-- default-autowire="constructor": bean:内部的字段会自动根据构造器(类型)装载spring容器里的bean 
										 byName:bean内部的字段会自动根据名字装载spring容器里的bean 
										 byType:bean内部的字段会自动根据类型装载spring容器里的bean -->

	<!-- default-init-method="defautInit" default-destroy-method="defaultDestroy": 
										   定义所以的bean的初始化方法是defautInit,
										   结束方法是defaultDestroy -->

	<!-- 定义一个bean,初始化方法是start,结束方法是stop -->
	<bean id="bean1" class="text2_IoC.Bean1"
		init-method="start" destroy-method="stop"></bean>

	<!-- 定义两个bean,进行自动注入 -->
	<bean id="autoWiring1" class="text2_IoC.AutoWiring1"></bean>
	<bean class="text2_IoC.AutoWiring2"></bean>


	<!-- 定义一个bean,进行set方法()和构造器(类型)-->
	<bean id="bean2" class="text2_IoC.Bean2"></bean>

	<!-- 定义一个bean,用set方法的方式注入 -->
	<bean id="property" class="text2_IoC.Property">
		<property name="Bean2" ref="bean2"></property>
	</bean>

	<!-- 定义一个bean,用构造器的方式注入 --> 
	<bean id="constructor-arg" class="text2_IoC.Constructor-arg">
		<constructor-arg name="Bean2" ref="bean2"></constructor-arg>
	</bean>
	
	<!-- 使用 context,要引用相应的解释-->
	<!-- 引入外部文件,用于数据交互 -->
    <context:property-placeholder location="classpath:/config.txt"/>
    
    
	<!-- 开启自动扫描text2_IoC包下的所以类的注释 注释方式IoC -->
	<context:component-scan base-package="text2_IoC"></context:component-scan>
        
</beans>

说明:
将总的配置全部展示了,下面分别说明

IoC 注入的三种方式

1. 通过setXxx()方法进行注入,依据bean的名称进行注入

代码片.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

	<!-- 定义一个bean,进行set方法() -->
	<bean id="bean2" class="text2_IoC.Bean2"></bean>

	<!-- 定义一个bean,用set方法的方式注入 -->
	<bean id="property" class="text2_IoC.Property">
		<property name="Bean2" ref="bean2"></property>
	</bean>
</beans>

说明:
set方法注入bean是通过bean的名称来进行的,使用< property name=“Bean2” ref=“bean2” />

2. 通过构造器进行注入,依据bean的类型进行注入

代码片.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
        
	<!-- 定义一个bean,进行构造器(类型)-->
	<bean id="bean2" class="text2_IoC.Bean2"></bean>
	
	<!-- 定义一个bean,用构造器的方式注入 --> 
	<bean id="constructor-arg" class="text2_IoC.Constructor-arg">
		<constructor-arg name="Bean2" ref="bean2"></constructor-arg>
	</bean>

</beans>

说明:
构造器注入bean是通过bean的类型来进行的,使用< constructor-arg name=“Bean2” ref=“bean2” />

3. 通过自动注入,依据配置不同的全局属性,来完成三种不同的配置

代码片.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        
    default-autowire="constructor"">
	<!-- default-autowire="constructor": bean:内部的字段会自动根据构造器(类型)装载spring容器里的bean 
										 byName:bean内部的字段会自动根据名字装载spring容器里的bean 
										 byType:bean内部的字段会自动根据类型装载spring容器里的bean -->

	<!-- 定义两个bean,进行自动注入 -->
	<bean id="autoWiring1" class="text2_IoC.AutoWiring1"></bean>
	<bean class="text2_IoC.AutoWiring2"></bean>

</beans>

说明:
default-autowire=“xxxx”:
bean:内部的字段会自动根据构造器(类型)装载spring容器里的bean
byName:bean内部的字段会自动根据名字装载spring容器里的bean
byType:bean内部的字段会自动根据类型装载spring容器里的bean

IoC 定义生命周期方法的五种方式

在实例化bean时,先调用初始化方法;在销毁bean时,调用销毁方法

1. 通过实现初始化方法和销毁方法的接口来实现功能

代码片.

package text2_IoC;

import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;

public class 生命周期 implements InitializingBean, DisposableBean {

	@Override
	public void afterPropertiesSet() throws Exception {
		System.out.println("初始化方法");
	}
	
	public void main(){
		System.out.println("核心方法");
	}
	
	@Override
	public void destroy() throws Exception {
		System.out.println("销毁方法");
	}
	
}

说明:
InitializingBean:初始化
DisposableBean :销毁

2. 通过配置bean的属性来定义初始化方法和销毁方法

代码片.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
        
	<!-- 定义一个bean,初始化方法是start,结束方法是stop -->
	<bean id="bean1" class="text2_IoC.Bean1"
		init-method="start" destroy-method="stop"></bean>

</beans>

说明:
init-method=“start”:初始化方法
destroy-method=“stop”:销毁方法

3. 通过配置全局属性来定义初始化方法和销毁方法

代码片.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd"

	default-init-method="defautInit" default-destroy-method="defaultDestroy">
	<!-- default-init-method="defautInit" default-destroy-method="defaultDestroy": 
										   定义所以的bean的初始化方法是defautInit,
										   结束方法是defaultDestroy -->
</beans>

说明:
default-init-method=“defautInit” :初始化方法defautInit
default-destroy-method=“defaultDestroy”:销毁方法defaultDestroy

4. 通过注解定义初始化方法和销毁方法

代码片.

	......
	//定义bean的初始化方法
	@PostConstruct
	public void init() {
		System.out.println("初始化方法");
	}
	
	//定义bean的销毁方法
	@PreDestroy
	public void destroy() {
		System.out.println("销毁方法");
	}
	......

说明:
@PostConstruct定义init:初始化方法
@PreDestroy定义destroy:销毁方法

5. 通过注解注册bean时定义初始化方法和销毁方法

代码片.

	......
	//定义一个bean,名字自定义为stringStore,类型StringStore实现了Store 接口,初始化方法是init,结束方法是destroy
	@Bean(name = "stringStore", initMethod="init", destroyMethod="destroy")
	public Store stringStore() {
		return new StringStore();
	}
	......

说明:
init:初始化方法
destroy:销毁方法

IoC 引入其他配置文件

代码片.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">
        
	<!-- 使用 context,要引用相应的解释-->
	<!-- 引入外部文件,用于数据交互 -->
    <context:property-placeholder location="classpath:/config.txt"/>
    
</beans>

说明:
使用 context,要引用相应的解释:
xmlns:context=“http://www.springframework.org/schema/context
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd

IoC 开启注释

代码片.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">
        
    
	<!-- 开启自动扫描text2_IoC包下的所以类的注释 注释方式IoC -->
	<context:component-scan base-package="text2_IoC"></context:component-scan>
	      
</beans>

IoC API

使用资源对象 ,操作外部资源文件代码片.

//实现ApplicationContextAware接口,可以获得ApplicationContext上下文
public class MoocResource implements ApplicationContextAware  {
	
	private ApplicationContext applicationContext;
	@Override
	public void setApplicationContext(ApplicationContext applicationContext)
			throws BeansException {
		this.applicationContext = applicationContext;
	}
	
	//获得config.txt的属性
	public void resource() throws IOException {
		Resource resource = applicationContext.getResource("config.txt");
		System.out.println("名字:"+resource.getFilename());
		System.out.println("长度:"+resource.contentLength());
	}
}

获取spring 上下文,获取bean实例代码片.

ApplicationContext context=new 
						ClassPathXmlApplicationContext(
								"text2_IoC/applicationContext.xml");
		IStudent person = (IStudent) context.getBean("student");

说明:
还有很多XXXXXAware,来使用资源

总结

略了
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值