标签:
在spring的配置文件applicationContext.xml中, 配置包扫描器时, 使用了*, 想扫描所有的包; 而这种方式有可能扫描到spring自带的包, 造成错误(自我理解, 不对的话求教育)
改动前:
<!-- 包扫描器 --> <context:component-scan base-package="*"/>
改动后 :
<!-- 包扫描器 --> <context:component-scan base-package="service.*,dao.*,action.*"/>
@EnableAsync annotation metadata was not injected
标签:
原文地址:http://www.cnblogs.com/JAYIT/p/5071734.html