
简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
idea报错:Error:Kotlin: Module was compiled with an incompatible version of Kotlin.
idea里面的Kotlin插件版本比pom里面的低。升级idea里面kotlin插件版本。

解决:Field xxMapper in xx.xxServiceImpl required a bean of type ‘xx.xxMapper‘ that could not be found.
找到@MapperScan ,是扫描mapper类的注解,后面添加上找不到那个mapper的路径。

Error creating bean with name ‘documentationPluginsBootstrapper‘ defined in URL
原因:controller中有两个方法使用了同一个url路径,出现两个接口地址一致的情况。解决原因:将其中地址修改成唯一url路径。

到底了








