Maven多模块开发Action:Consider defining a bean of type '*.*.*' in your configuration解决

   最近在使用maven构建多模块进行Springboot和mybatits开发时,总遇到一些稀奇古怪的错误,在模块引用的时候,使用改对象并不报错,但是在启动项目时遇到类找打不到的错误,后来找到了解决方法:具体能不能都全部解决这种异常就不是很清楚啦!希望可以帮到一些人.

项目启动时异常如下:

Description:

Field ossUtil in com.suyu.xps.server.DocService required a bean of type 'com.suyu.alioss.util.OssUtil' that 
could not be found.

Action:

Consider defining a bean of type 'com.suyu.alioss.util.OssUtil' 
in your configuration.

Process finished with exit code 1
解决方法:

       1.子模块编写一个启动类,使用注解@Configuration,和@Import把找不到的类注入到容器中

Maven多模块开发Action:Consider defining a bean of type '*.*.*' in your configuration解决_第1张图片

       2.在主模块的启动入口使用@Import(需要注入的类),再试一下吧,看下是不是解决了,没解决的话你就该冷静一下,把项目删了,关了Idea,再把Idea卸载了,JDK卸载啦,这个时候你就该冷静下来,抽个烟,你就会发现,.............!

Maven多模块开发Action:Consider defining a bean of type '*.*.*' in your configuration解决_第2张图片


你可能感兴趣的:(java)