intellJ 上的标红
spring boot Configuration Annotation Proessor not found in classpath
解决方案:导入依赖1
2
3
4
5<dependency>
<groupId> org.springframework.boot </groupId>
<artifactId> spring-boot-configuration-processor </artifactId>
<optional> true </optional>
</dependency>
若是还标红 重启下intellJ就行了
Could not autowire. No beans of 'xxxxMapper' type found
解决方案:安装 Mybatis Plugin 插件
注意Mybatis Plugin是收费的 另外有一个Free Mybatis Plugin但是没有效果cannot resolve property under construction in mybatis-mapper.xml
解决方案:1:输全路径。2 在modules下spring中添加Application xml错误页面
- 错误页面路径配置
server.error.path(默认error)
- 异常处理器来进行日志输出(Spring Boot提供了)
1 | //Controller 辅助类 |