分享知识-快乐自己:intellij Idea报错Could not autowire. No beans of...

intellig idea 使用@Resource或者@Autowire报错,出现红色波浪线;

虽然不影响使用,但是看着很不爽,所以还是解决了下:

报错提示:

  Could not autowire. No beans of ‘‘ type found. less... (Ctrl+F1) Checks autowiring problems in a bean class.

方式一:

  解决方法:

  Settings - Editor - Inspections - Spring - Spring Core - Code - Autowiring for Bean Class 勾去掉

方式二:

  建议使用第一种。

 若有不足之处:请多多指教

如要转载请注明:小编地址(https://www.cnblogs.com/mlq2017/)

原文地址:https://www.cnblogs.com/mlq2017/p/9642959.html

时间: 2024-11-12 22:34:42

分享知识-快乐自己:intellij Idea报错Could not autowire. No beans of...的相关文章

Intellij IDEA 报错java.lang.NoClassDefFoundError

Intellij IDEA 报错java.lang.NoClassDefFoundError 11-Aug-2018 23:48:24.686 严重 [http-nio-8080-exec-5] org.apache.catalina.core.StandardWrapperValve.invoke Servlet.service() for servlet [com.wbg.testservlet] in context with path [] threw exception [Servle

【spring boot+mybatis】注解使用方式(无xml配置)设置自动驼峰明明转换(),IDEA中xxDao报错could not autowire的解决方法

最近使用spring boot+mybatis,使用IntelliJ IDEA开发,记录一些问题的解决方法. 1.在使用@Mapper注解方式代替XXmapper.xml配置文件,使用@Select等注解配置sql语句的情况下,如何配置数据库字段名到JavaBean实体类属性命的自动驼峰命名转换? 使用spring boot后,越来越喜欢用注解方式进行配置,代替xml配置文件方式.mybatis中也可以完全使用注解,避免使用xml方式配置mapper.(参考  springboot(六):如何优

【spring mvc】后台spring mvc接收List参数报错如下:org.springframework.beans.BeanInstantiationException: Failed to instantiate [java.util.List]: Specified class is an interface

后台spring mvc接收List参数报错如下:org.springframework.beans.BeanInstantiationException: Failed to instantiate [java.util.List]: Specified class is an interface org.springframework.beans.BeanInstantiationException: Failed to instantiate [java.util.List]: Speci

解决IDEA报错Could not autowire. There is more than one bean of 'xxx' type

其实这本身不是一个问题,也不影响整个项目的运行 我们查看报错信息发现它的意思大致为xxx类型有不止一个bean,但是这个错误不会影响项目运行,相当于一个warning. 导致这个错误的原因通常是注入的类型有其他的实现类,所以IDEA提示注入的时候会冲突.比如我的项目出现这个错误的原因是项目中新增了一个定制的插件,这个插件里重写了这个类. 因此出现这个问题的时候可以有两种办法解决. 解决方式有两种: 1.给不同的实现标注名字使用Qulifier注解标注 @Autowired @Qualifier(

intellij编译报错:Internal error: com.intellij.psi.tree.IFileElementType cannot be cast to com.intellij.psi.tree.IStubFileElementType

intellij编译时,报错,信息如下: Internal error: com.intellij.psi.tree.IFileElementType cannot be cast to com.intellij.psi.tree.IStubFileElementType 解决办法:File-->Invalidate caches. 转自“http://www.blogjava.net/anchor110/articles/392811.html”

IntelliJ IDEA报错总结

不能运行java程序 可能是没有选择运行环境点击 edit Configurations在Use classpath of module 中选择本项目的运行环境 Run报错: Error:java: Compilation failed: internal java compiler error a.进入Feil--->Settings...--->Build Tools--->Java Compiler b.Per-module bytecode version:中 Module 选择

Intellij IDEA报错:Could not save application settings: java.io.IOException: java.lang.AssertionError: Unexpected content storage modificat

Question: i have a message saying "Could not save application settings: java.io.IOException: java.lang.AssertionError: Unexpected content storage modification" when running the apps. Anybody have an idea how to fix this? Answer: I ran into this

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

新建maven工程运行出现Intellij idea 报错:Error : java 不支持发行版本5

Step1点击: 点击 保持一致: Step2点击 这样就可以了. 主要是运行时jdk版本不一致的问题 原文地址:https://www.cnblogs.com/cstdio1/p/12232991.html