错误背景 笔者在建一个新的spring cloud 项目时,出现的报错提示为: Invocation of init method failed; nested exception is java.l
笔者在建一个新的spring cloud 项目时,出现的报错提示为:
Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Property
经过网上搜索后,主要说是controller和xml有重名方法,或者启动类有问题,如@SpringBootApplication()的括号里不能有东西。
检查后,锁定到是我在config类里已经写了@MapperScan()的注解:
@Configuration@EnableTransactionManagement@MapperScan("com.demo.service.mapper")public class mybatisPlusConfig {}
那么启动类里的@MapperScan()需要更改成@ComponentScan()。
启动类里修改为:
@springBootApplication@ComponentScan("com.demo.service.mapper")public class EduApplication { public static void main(String[] args) { SpringApplication.run(EduApplication.class, args); }}
或者直接把config的@MapperScan删了,但感觉会失去配config的一些意义
修改后,即不再报错,但是项目还有点其他小问题
组件扫描注解,用来扫描@Controller @Service @Repository这类,主要就是定义扫描的路径从中找出标志了需要装配的类到Spring容器中
扫描mapper类的注解,就不用在每个mapper类上加@MapperScan了
这两个注解是可以同时使用的,但是需要改为@MapperScan(basePackages = {})的形式。
或者只使用@MapperScan()去扫描mapper包,让项目启动自己去扫描swagger配置类的包。
同一个类扫描的是同一路径会产生错误。
还是有很多东西需要搞懂,spring底层以及相关特征还需要进一步了解。
请大家多多支持点赞关注!
来源地址:https://blog.csdn.net/soulwirter/article/details/128263809
--结束END--
本文标题: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Property报错
本文链接: https://lsjlt.com/news/387675.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-01
2024-04-03
2024-04-03
2024-01-21
2024-01-21
2024-01-21
2024-01-21
2023-12-23
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0