Springboot devtools热部署Mybatis报错

使用SpringBoot devtools热部署功能,Mybatis出现无法找到映射文件的错误提示,导致无法启动web服务器

错误提示:
Caused by: java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load [mapper/]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
    at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading(WebappClassLoaderBase.java:1363) ~[tomcat-embed-core-9.0.14.jar:9.0.14]
    at org.apache.catalina.loader.WebappClassLoaderBase.getResource(WebappClassLoaderBase.java:1023) ~[tomcat-embed-core-9.0.14.jar:9.0.14]
    at org.springframework.core.io.ClassPathResource.resolveURL(ClassPathResource.java:155) ~[spring-core-5.1.4.RELEASE.jar:5.1.4.RELEASE]
    at org.springframework.core.io.ClassPathResource.getURL(ClassPathResource.java:193) ~[spring-core-5.1.4.RELEASE.jar:5.1.4.RELEASE]
    at org.springframework.core.io.support.PathMatchingResourcePatternResolver.findPathMatchingResources(PathMatchingResourcePatternResolver.java:497) ~[spring-core-5.1.4.RELEASE.jar:5.1.4.RELEASE]
    at org.springframework.core.io.support.PathMatchingResourcePatternResolver.getResources(PathMatchingResourcePatternResolver.java:298) ~[spring-core-5.1.4.RELEASE.jar:5.1.4.RELEASE]
    at org.mybatis.spring.boot.autoconfigure.MybatisProperties.getResources(MybatisProperties.java:191) ~[mybatis-spring-boot-autoconfigure-2.0.0.jar:2.0.0]
    at org.mybatis.spring.boot.autoconfigure.MybatisProperties.lambda$resolveMapperLocations$0(MybatisProperties.java:185) ~[mybatis-spring-boot-autoconfigure-2.0.0.jar:2.0.0]

问题原因:
关键字不能加载[mapper/]。
springBoot 使用了spring-boot-devtools,热部署后加载mybatis映射文件找不到对应目录造成的

两个解决方法:
第一个禁用热加载
pom.xml里面的这个可以不改
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>
application.properties配置对应属性为false
spring.devtools.restart.enabled=false

第二个解决方法为

只需要设application.properties
mybatis.mapperLocations=classpath*:mapper/*.xml
使用classpath*:替换之前的classpath:来告诉spring查找所有classpath

  • 4
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
MybatisPlus是一个基于Mybatis的增强工具,它提供了很多便捷的功能和特性,其中包括部署。引用\[1\]中提到的Jrebel MybatisPlus Extension是一个配合Jrebel使用的扩展,它可以实现在修改Mybatis的mapper.xml文件时无需重启项目。这样可以提高开发效率,省去了频繁重启项目的麻烦。 要实现MybatisPlus的部署,首先需要在启动类中添加@MapperScan注解,指定mapper接口的扫描路径。引用\[2\]中的代码片段展示了一个示例的启动类,其中使用了@MapperScan注解来扫描com.example.perinf.Dao包下的mapper接口。 其次,需要在pom.xml文件中添加相应的依赖。引用\[3\]中的代码片段展示了添加MybatisPlus和相关依赖的示例。其中包括了mybatis-plus-boot-starter、mysql-connector-java和spring-boot-devtools等依赖。 最后,根据不同的环境,可以在application.yml等配置文件中进行相应的配置。开发环境、测试环境和生产环境的配置可以根据需要进行调整,以满足不同环境下的需求。 总结来说,要实现MybatisPlus的部署,需要添加相应的依赖,配置启动类和配置文件,并配合使用Jrebel MybatisPlus Extension扩展。这样就可以在修改mapper.xml文件时实现部署,提高开发效率。 #### 引用[.reference_title] - *1* [部署插件配置和mybatis部署插件配置和破解(Jrebel MybatisPlus Extension和JRebel and XRebel)](https://blog.csdn.net/Mael_Xu/article/details/127791248)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* *3* [快速搭建spring boot + mybatis-plus初始化项目以及idea中spring boot配置部署](https://blog.csdn.net/cao2509712467/article/details/121307708)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值