SPRING IOC注入方式过程解析

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

SPRING IOC注入方式过程解析

  2021-04-02 我要评论

这篇文章主要介绍了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>

您可能感兴趣的文章:

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们