@EnableAsync annotation metadata was not injected
@EnableAsync annotation metadata was not injected在spring的配置文件applicationContext.xml中, 配置包扫描器时, 使用了*, 想扫描所有的包; 而这种方式有可能扫描到spring自带的包, 造成错。
改动前:<!-- 包扫描器 -->
<context:component-scan base-package="*"/> 改动后 :
<!-- 包扫描器 -->
<context:component-scan base-package="service.*,dao.*,action.*"/>
页:
[1]