项目运行中出现Injection of autowired dependencies failed错误
1.检查你项目中有没有多余的@Autowired 如果你引入了多余(或者错误的)的@Autowired就会导致以上错误

一般这个错误都是发生在controll,dao,service中,看看你的注解是否有多余或者错误
Dao—@Repository
Service—@Service
Controller—@Controller
1.检查你项目中有没有多余的@Autowired 如果你引入了多余(或者错误的)的@Autowired就会导致以上错误

一般这个错误都是发生在controll,dao,service中,看看你的注解是否有多余或者错误
Dao—@Repository
Service—@Service