第1个回答 2017-01-16
在定义DAO和Service等其他bean的时候一般都会指定一个名称 如下:
@Repository("fnFunctionBasicDAO")
public class FnFunctionBasicDAOImpl {。。。。}
@Service("menuManager")
public class MenuManager{。。。。。}
使用resource注入就可以直接使用这个名字
我一般习惯于使用下面的方式注入
@Autowired
@Qualifier("menuManager")
private MenuManager menuManager;
追问:
谢谢啊,那我为什么在dao方法上加上@Resource()就报Error creating bean with name 'UserinfoDAO' defined in class path resource [applicationContext.xml]: Post-processing failed of bean type [class com.zyx.dao.impl.UserinfoDAOImpl] failed; nested exception is java.lang.IllegalStateException: @Resource annotation is not supported on static fields
什么原因?
回答:
@Resource annotation is not supported on static fields,你的UserinfoDAO是static的?
追问:
UserinfoDAO是一个接口,UserinfoDAOImpl实现的,是不是@Resource()不能加在方法上,只能加在类上?我把它放到类上就不报错了
回答:
是的,是加在类上面本回答被提问者采纳