手边星辰

博客园 首页 新随笔 联系 订阅 管理

如题: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

则失败

posted on 2015-01-08 17:26  手边星辰  阅读(1410)  评论(0编辑  收藏  举报