
分布式
文章平均质量分 53
spt_dream
成功,是不断进步的人生
展开
-
2021-03-31关于spring boot自动注入出现Consider defining a bean of type ‘xxx‘ in your configuration问题解决方案
搭建完spring boot的demo后自然要实现自动注入来体现spring ioc的便利了,但是我在实施过程中出现了这么一个问题,见下面,这里找到解决办法记录下来,供遇到同样的问题的同僚参考Description:Field helloService in com.example.demo.service.TestController required a bean of type 'com.example.service.HelloService' that could not be found原创 2021-03-31 09:52:09 · 3637 阅读 · 0 评论 -
Error:java: Annotation processing is not supported for module cycles.
项目启动报这个Error的原因是moudle循环依赖的问题,就是我依赖了你,同时你也依赖了我,这时候就回产生循环依赖问题,如下图所示:这里面会显示你产生循环依赖问题的两个某块,你看下是否时循环依赖了对方,如果是,在pom.xml文件中删除其中一个依赖,然后重新启动,就可以了。...原创 2021-03-29 16:49:06 · 185 阅读 · 0 评论