软件编程
位置:首页>> 软件编程>> java编程>> SPRING IOC注入方式过程解析

SPRING IOC注入方式过程解析

作者:魏晋南北朝  发布时间:2023-10-11 12:59:13 

标签:SPRING,IOC,注入

这篇文章主要介绍了SPRING IOC注入方式过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

Spring IOC注入的方法主要有两种

1:设值注入

2:构造注入

简单来说一个是调用set方法设值,一个是通过构造函数设值

Spring-ioc.xml


<?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= "init" default-destroy-method= "destroy">
<!--
<bean id="InjectionService" class="Main.InjectionServiceImpl">
<property name="injectionDAO" ref="InjectionDAO"></property>
</bean>
-->
<bean id="InjectionService" class="Main.InjectionServiceImpl">
<constructor-arg name="injectionDAO" ref="InjectionDAO"></constructor-arg>
</bean>
<bean id="InjectionDAO" class= "Main.InjectionDAOImpl"> </bean>

</beans>

SPRING IOC注入方式过程解析

来源:https://www.cnblogs.com/wjune-0405/p/12148750.html

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com