springboot环境问题踩坑,
使用的parent如下,由于项目集成了自有parent, 故无法将spring-boot-parent继承, 故放在dependencyManagement 中
引入mybatis依赖:一直报错 java.lang.ClassNotFoundException: org.apache.ibatis.annotations.Mapper
经过查询, 发现mybatis版本过低, 于是引入依赖升级mybatis版本
启动一直无法扫描mapper, 也使用了mapperScan, 由于项目使用了tkmapper, 后来发现mapperScan要使用 tk.mybatis.spring.annotation.MapperScan, 故引入以下依赖:
引入之后, 发现mapper依然无法在启动时装配为bean, 无法实现依赖注入, 经过多方面查询发现是mybatis-spring版本过低导致:
spring boot在整合dubbo过程中遇到的问题:
springboot整合dubbo不建议使用注解方式, @Reference, 建议使用xml方式引入dubbo配置
网友评论