在使用spring2.5进行开发时,如果不使用注解,就必须在java代码中就要使用setter/getter方法。如果我不想使用settter/getter方法,可以考虑使用注解。spring 默认支持 @Autowired ,但是呢,这个注解不够强大,我们推荐使用 @Resource。
1)在把 @Autowired 换成 @Resource 后,执行程序,程序报nullexceptiop了,发现 @Resource 注入的对象为null,这就是说 @Resource 没有生效;
2)在网上查询了一下:使用@Resource ,要进行一个简单的配置:
<context:annotation-config/>
在applicationContext.xml中加入上面的代码。再次执行程序,运行正常。
3)如果想使用注解的方式定义bean,也可以使用注解的方式。在applicationContext.xml 加入
<context:component-scan base-package="com.bohai.dao.**" />
上述代码中,base-package的值是package名。
参考资料:
http://www.ibm.com/developerworks/cn/java/j-lo-spring25-ioc/