为什么dao 用@Resource service 用@Autowired
why?
@Resource 和 @Autowired 都可以注入,只不过@Autowired按byType自动注入,而@Resource默认按 byName自动注入
你注入后不会提示错误么