java注解 bean的作用_使用注解的方式来定义bean的作用域 即实现单例或原型

第一步:新建工程   SecondSpring

文件目录结构如下:

82263db095168af722ea3dfae97066af.png

第二步:导入相应的spring  jar包

略...

第三步: 新建类

AnnotationTest.java

package com.xuzhiwen.spring4;import org.springframework.context.annotation.Scope;import org.springframework.stereotype.Service;@Service

@Scope("singleton")

public class AnnotationTest {

public String name;public String getName() {

return name;}

public void setName(String name) {

this.name= name;}

}

第四步: 新建配置文件

common.xml

第五步:新建配置文件

annotation.xml

第六步: 编写测试类

package com.xuzhiwen.spring4;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class Test {

public static void main(String[]args) {

ApplicationContext app= new ClassPathXmlApplicationContext("common.xml"); AnnotationTest test1 = (AnnotationTest) app.getBean("annotationTest"); test1.setName("helloworld");AnnotationTest test2= (AnnotationTest) app.getBean("annotationTest"); System.out.println(test2.getName());}

}

第七步:运行结果如下

c00e571eebffc2b7b056bb1e51f67d51.png

注: 同理可实现原型

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值