spring 笔记持续更新2012年9月16日 11:54:45
2021/6/2 10:22:17
本文主要是介绍spring 笔记持续更新2012年9月16日 11:54:45,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
spring笔记
点击下载立体结构笔记http://download.csdn.net/detail/yao__shun__yu/4608595
点击进入我的个人编程网站,初步建设中http://monkeycode.yy.cn8u.cn/
@Resource注入
1、构造方法注入
2、set注入
1、如果想把@Resource放在 private HelloSpring helloSpring 前面,那么就需要有一个空的构造方法,
否则就会报异常(org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate)
public class TAnnotation { @Resource private HelloSpring helloSpring; /** * 这种注入必须有一个空的构造方法 */ public TAnnotation(){}; public TAnnotation(HelloSpring helloSpring) { this.helloSpring = helloSpring; }
2、set注入,对应的要有的set方法,把@Resource写在set方法上面
import javax.annotation.Resource; public class TAnnotation { private HelloSpring helloSpring; public void doShow(){ helloSpring.doShowMessage(); } @Resource public void setHelloSpring(HelloSpring helloSpring) { this.helloSpring = helloSpring; } }
注解 @Service 用于标注业务业务层组件 @Controller 用于标注控制层组件(Struts action) @Repository 用于标注数据访问组件dao @Component 用于泛指组件 例子 ---- xml <context:component-scan base-package="com.xiaofu.bean.imp"></context:component-scan> @Service("personService") @Scope("prototype") public class PersonServiceBean { @PostConstruct public void init(){ System.out.println("初始化"); } @PreDestroy public void destory(){ System.out.println("摧毁"); } }
这篇关于spring 笔记持续更新2012年9月16日 11:54:45的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南