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

spring获取bean的时候严格区分大小写

时间:2015-01-08 19:35:47      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:

如题:spring获取bean的时候严格区分大小写

配置文件helloservice.xml中配置:

<dubbo:reference id="IInsurance" interface="xx.xx.asdf.IHelloService" timeout="500000" url="dubbo://172.XXX.XXX.XXX:20880"/>

 

代码中:

ApplicationContext ctx=new ClassPathXmlApplicationContext("helloservice.xml");

IInsuranceSearchService insService=(IInsuranceSearchService)ctx.getBean("IInsurance");//IInsurance

则可获取成功

 

但是如果是:

ApplicationContext ctx=new ClassPathXmlApplicationContext("helloservice.xml");

IInsuranceSearchService insService=(IInsuranceSearchService)ctx.getBean("iInsurance");//iInsurance

则失败

spring获取bean的时候严格区分大小写

标签:

原文地址:http://www.cnblogs.com/lengfengzhizhe/p/4211516.html

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