博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用构造器注入
阅读量:6387 次
发布时间:2019-06-23

本文共 820 字,大约阅读时间需要 2 分钟。

 <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns=" "
       xmlns:xsi=" "
       xsi:schemaLocation="
           ">
       <bean id="personDao" class="cn.itcast.dao.impl.PersonDaoBean"></bean>
       <bean id="personService" class="cn.itcast.service.impl.PersonServiceBean">
         <!-- 使用构造器参数注入 -->
         <constructor-arg index="0" type="cn.itcast.dao.PersonDao" ref="personDao"></constructor-arg>
           <constructor-arg index="1" value="传智博客"></constructor-arg>
       </bean>
</beans>
---------------------------------------------------------------------------------------------------
public class PersonServiceBean implements PersonService {
 private PersonDao personDao;
 private String name;
 public PersonServiceBean(PersonDao personDao, String name) {
  this.personDao = personDao;
  this.name = name;
 }
 @Override
 public void save(){
  System.out.println(name);
  personDao.add();
 }
}

转载地址:http://dkdha.baihongyu.com/

你可能感兴趣的文章
Ubuntu安装mysql
查看>>
SpringCloud 微服务 (十四) 服务网关 Zuul 过滤器(Pre&Post)
查看>>
代理设计模式
查看>>
初识Shiro
查看>>
在Developerkit开发板上运行blink例程
查看>>
企业级性能、安全可靠 阿里云发布企业级大数据平台开发者版
查看>>
Spring Boot使用过程小记(一)--加载自定义的Spring XML
查看>>
Git分支关联远程GitHub分支出错
查看>>
设计模式--桥接模式
查看>>
linux笔记之进程信息查看工具
查看>>
django 自定义分页器
查看>>
Oracle命令
查看>>
转载-没有IE就没有伤害!浏览器兼容性问题解决方案汇总
查看>>
常用 tcpdump 抓包方式
查看>>
Geek's Collection(幂运算)
查看>>
easy bootstrap模板
查看>>
Hdu 4734-F(x) 数位dp
查看>>
DRUID连接池的实用 配置详解
查看>>
html&css精华总结
查看>>
ImportError: No module named tornado.ioloop 记录过程
查看>>