IDEA出现Could not autowire. No beans of 'xxx' type found.解决


Plan A

File → Project Structure...

Facets → Spring → 右键删除即可


Plan B

File → Settings → Editor → Inspections → Spring

把Mixed换成Warning即可。


Plan C

settings → inspections → spring → spring core → code → autowiring for bean class,右键替换成 warning



IDEA出现Could not autowire. No beans of 'xxx' type found.解决

原文地址:https://www.cnblogs.com/zilongmao/p/10350981.html

时间: 2024-10-10 01:44:14

IDEA出现Could not autowire. No beans of 'xxx' type found.解决的相关文章

IntelliJ idea 报错:Could not autowire,no beans of "XXX" type found

Question:使用 IDEA 开发Java web项目时,在注解 @Autowired 装配 dao 时显示:Could not autowire,no beans of "XXX" type found. Measures:① 在@Autowired 注解下面添加上 @SuppressWarnings("SpringJavaAutowiringInspection");   ② 降低 Autowired 检测的级别,将 Severity 的级别由之前的 err

Could not autowire. No beans of ‘xxx” type found(三种方法)

我当时提示错误是,不影响使用,可是就是报错让人不爽. Could not autowire. No beans of 'RequestMappingHandlerMapping' type found. @Autowired private RequestMappingHandlerMapping requestMappingHandlerMapping; 后来改成@Resource注入,就不报错了, @Resourceprivate RequestMappingHandlerMapping r

IntelliJ Idea取消Could not autowire. No beans of 'xxxx' type found的错误提示

1.问题描述 在Idea的spring工程里,经常会遇到Could not autowire. No beans of 'xxxx' type found的错误提示.但程序的编译和运行都是没有问题的,这个错误提示并不会产生影响.但红色的错误提示在有些有强迫症的程序员眼里,多多少少有些不太舒服. 2. 原因 spring auto scan配置,在编辑情况下,无法找不到对应的bean,于是提示找不到对应bean的错误.常见于mybatis的mapper,如下: <!-- mapper scanne

IntelliJ Idea解决Could not autowire. No beans of &#39;xxxx&#39; type found的错误提示

本文转自:http://blog.csdn.net/u012453843/article/details/54906905 1.问题描述 在Idea的spring工程里,经常会遇到Could not autowire. No beans of 'xxxx' type found的错误提示.但程序的编译和运行都是没有问题的,这个错误提示并不会产生影响.但红色的错误提示在有些有强迫症的程序员眼里,多多少少有些不太舒服. 2. 原因 原因可能有两个,第一个是IntellijIDEA本身工具的问题.第二

【ActiveMQ】消息生产者自动注入报错:Could not autowire. No beans of &#39;JmsMessagingTemplate&#39; type found

使用ActiveMQ过程中,定义消息生产者: package com.sxd.jms.producer; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jms.core.JmsMessagingTemplate; import org.springframework.stereotype.Service; import javax.jms.Destination;

Could not autowire. No beans of &#39;TbItemMapper&#39; type found. less... (Ctrl+F1) Checks autowiring prob

Intellij Idea开发工具在@Autowired或者@Resource注入XxxMapper接口时报如下错误: Could not autowire. No beans of 'TbItemMapper' type found. less... (Ctrl+F1)  Checks autowiring prob 解决方法如下,在 Intellij Idea中设置一下: Settings - Editor - Inspections - Spring - Spring Core - Cod

IDEA解决&quot;Could not autowire. No beans of &#39;xxxx&#39; type found&quot;的错误提示

使用IDEA开发Spring Boot项目的时候,利用注解的方式整合Mybatis.在运行的时候有可能会出现"Could not autowire. No beans of 'xxxx' type found"的错误提示,这个提示的意思就是没有找到该类型的bean,也就是说创建dao层的实例失败. 这种情况一般是配置注解的时候没有扫描到mapper层,但是有的时候明明路径配置没有问题还是会出现这个问题,这个时候有可能是因为IDEA本身的问题. 解决办法是在mapper层添加注解@Rep

Field injection is not recommended和Could not autowired. No beans of &#39;xxx&#39; type found.

目录 问题 解决办法 备注 问题 在项目中,我们使用Spring的@Autowired注解去引入其他类时有时候阿里的编码规约插件就会提示:"Field injection is not recommended"或"Could not autowired. No beans of 'xxx' type found.",引用类的变量名会有红色的波浪线,虽然不影响程序执行,但是强迫症看着还是难受. 解决办法 将"@Autowired"注解换为"

mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found

工具及背景: IntelliJ IDEA 2016.1.3 Ultimate.spring boot, maven项目,利用mybatis 注解的方式查询mysql. 业务逻辑关系:controller --> Service接口 ----> serverImpl --->Dao -->DaoImpl ---> mapper -->db 问题:mapper提示Could not autowire. No beans of - type found?如图: 其中Produ