@org.springframework.beans.factory.annotation.Autowired(required=true
时间: 2023-10-02 13:07:47 浏览: 175
spring的annotation的autowired
根据引用[1]和引用[2]的内容,报错"The injection point has the following annotations: - @org.springframework.beans.factory.annotation.Autowired(required=true)"是因为在自动注入时找不到对应的Bean。解决这个问题可以尝试以下步骤:
1. 将@Autowired注解改为@Resource注解,然后再次运行程序。
2. 确保需要注入的service在启动类上添加了包扫描注解,以确保该bean所在的包能够被扫描到。
根据引用[3]的内容,启动后报错的问题可能是由于@org.springframework.beans.factory.annotation.Autowired(required=true)注解引起的。具体解决方法可以参考上述步骤。
阅读全文