标签:style color ar sp on ad line as size
用spring自动装配,如果把出错地方的@Autowired改为Autowired(required=false)不会出现错误。但是同时不会加载出错的类
如:
@Autowired
BaseDao dao;这错了
改为(找不到类时也报错)
@Autowired(required=false)
BaseDao dao;这就不报错了同时也不能注入BaseDao这个对象
标签:style color ar sp on ad line as size
原文地址:http://my.oschina.net/u/1789904/blog/344863