码迷,mamicode.com
首页 > 编程语言 > 详细

Spring依赖注入

时间:2021-03-18 14:19:15      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:tor   value   domain   构造   username   方法   ref   pre   class   

通过构造函数注入

<bean id="accountDao" class="com.ttpfx.dao.impl.AccountDaoImpl"/>
<bean id="accountService" class="com.ttpfx.service.impl.AccountServiceImpl">
    <constructor-arg name="accountDao" ref="accountDao"/>
</bean>

通过set方法注入

<bean id="accountDao" class="com.ttpfx.dao.impl.AccountDaoImpl"/>
<bean id="accountService" class="com.ttpfx.service.impl.AccountServiceImpl">
   <property name="accountDao" ref="accountDao"/>
</bean>

注入基本类型、String、Bean

public class Account {
    private Integer id;
    private String username;
    private Date birthday;
}
<bean id="now" class="java.util.Date"/>
<bean id="account" class="com.ttpfx.domain.Account">
    <property name="id" value="1"/>
    <property name="username" value="张三"/>
    <property name="birthday" ref="now"/>
</bean>  

Spring依赖注入

标签:tor   value   domain   构造   username   方法   ref   pre   class   

原文地址:https://www.cnblogs.com/ttpfx/p/14551075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!