admin 发表于 2016-7-13 14:48

@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]
查看完整版本: @EnableAsync annotation metadata was not injected