为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我设置了prototype 测试的结果还是singleton?

Java代码:

ApplicationContext context;

public OneInterfaceImplTest() {

context = new ClassPathXmlApplicationContext("spring-ioc.xml");

}

@Test

public void test() {

OneInterface oneInterface1 = (OneInterface) context.getBean("oneInterface");

System.out.println(oneInterface1.hello2("123"));

// ApplicationContext context1 = new ClassPathXmlApplicationContext("spring-ioc2.xml");

OneInterface oneInterface2 = (OneInterface) context.getBean("oneInterface");

System.out.println(oneInterface2.hello2("123"));

}

配置项:<bean class="daoImpl.InjectionDAOImpl" id="InjectionDAO" scope="prototype"></bean>


impl方法:

@Override

public String hello2(String string) {

// TODO Auto-generated method stub

return "" +  this.hashCode();

}


正在回答

1 回答

直接打印两个对象的地址值,看看相不相同。每次getBean都相当于new一次

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我设置了prototype 测试的结果还是singleton?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信