spring 中配置bean的注入是的name与与ref的id名需要一样吗??

spring 中配置bean的注入是的name与与ref的id名需要一样吗??5

Java代码   收藏代码
  1. "iService" class="com.lopu.framework.service.IServiceImpl">  
  2.     "dao" ref="dao">  
  3.   
  4.   
  5. "fnBean" class="com.lopu.framework.modules.maintain.action.FlightNatureAction" scope="prototype">  
  6.      "fnService">//此name必须是iService吗???  
  7.         "iService" />  
  8.          
  9.   


Java代码   收藏代码
  1. public class FlightNatureAction extends ActionSupport implements  
  2.         ModelDriven {  
  3.   
  4.       
  5.     private IService fnService;  
  6.     private List fnLists = new ArrayList();  
  7.     private FlightNature fnBean = new FlightNature();  
  8.       
  9.     public IService getFnService() {  
  10.         return fnService;  
  11.     }  
  12.   
  13.     public void setFnService(IService fnService) {  
  14.         this.fnService = fnService;  
  15.     }  
  16.   
  17.     public List getFnLists() {  
  18.         return fnLists;  
  19.     }  
  20.   
  21.     public void setFnLists(List fnLists) {  
  22.         this.fnLists = fnLists;  
  23.     }  
  24.   
  25.     @SuppressWarnings("unchecked")  
  26.     public String list() throws Exception {  
  27.   
  28. //如果这样写会报NPE,即fnService没注入成功,但我把整段程序中的fnService改为iService,并改下配置文件就一切正常了  
  29.         this.fnLists = this.fnService.loadAll(FlightNature.class);  
  30.           
  31.         return SUCCESS;  
  32.     }  
  33.   
  34.   
  35.     public FlightNature getModel() {  
  36.         return this.fnBean;  
  37.     }  
  38.   
  39. }  


本人spring菜鸟,多多指教。。。
Spring 
2010年1月21日 19:52
  • Comment1条评论
  • 关注(1)

3个答案按时间排序按投票排序

0 0

采纳的答案

引用
      //此name必须是iService吗???  
           
    
    


property name对应了 
    public void setFnService(IService fnService) {  
         this.fnService = fnService;  
     }  

那么参数只要是IService类型的就OK了。。 
跟下面是一样的 
Xml代码   收藏代码
  1. <bean id="a" class="com.lopu.framework.service.IServiceImpl">  
  2.     <property name="dao" ref="dao">property>  
  3. bean>  
  4.   
  5. <bean id="fnBean" class="com.lopu.framework.modules.maintain.action.FlightNatureAction" scope="prototype">  
  6.      <property name="fnService">//此name必须是iService吗???  
  7.         <ref bean="a" />  
  8.     property>     
  9. bean>  

2010年1月21日 20:00
  • Comment添加评论
0 0

引用
   
       
   
  
   
     //此name必须是iService吗???   
           
   
      
 


你的代码改成这样也是完全可以的,只要ref的bean,和你要注入的类型一直就能注入进去

2010年1月21日 20:06
  • Comment添加评论
0 0

引用
   
     //此name必须是iService吗???   
           
   
      
 

咱们来看你这段代码 
1. 这个是干什么的? 是spring在bean的实例化过程中,把bean封装成beanwraper,然后进行统一的装配,这个name是指的是 
com.lopu.framework.modules.maintain.action.FlightNatureAction里的域成员,和你配置文件里的
引用
   
       
没有关系,只是实例化这个bean通过action中的set方法,注入进去而已。


你可能感兴趣的:(SSH)