错误信息: 这里报错的信息 一般都是 常见的类强制转换异常 出现的错误提示 ------要么不用 要么解决
java.lang.ClassCastException: com.luodada.shiro.AccountProfile cannot be cast to com.luodada.shiro.A
properties配置:
#restart.include.shiro-redis=/shiro-[\\w-\\.]+jar 之前报错:(java.lang.ClassCastException) 找不到 这个实体类 AccountProfile getProfile() //下面是添加后的 restart.include.shiro=/shiro-[\\w-\\.]+jar
#这样热启动就不会报异常 不然会报异常 因为官方提示这个 spring-boot-devtools 依赖必须配置这个文件
------------
注释热部署:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
下面记录其他博主的东西:
项目启动时加载项目中的类使用的加载器都是
org.springframework.boot.devtools.restart.classloader.RestartClassLoader
而从shiro session 取出来的对象(从redis中取出经过反序列化)的类加载器都是
sun.misc.Launcher.AppClassLoader
很明显会导致类型转换异常,原来Spring的dev-tools为了实现重新装载class自己实现了一个类加载器,来加载项目中会改变的类,方便重启时将新改动的内容更新进来。
方案一、不使用spring-boot-devtools
方案二:在resources目录下面创建META-INF文件夹,然后创建spring-devtools.properties
restart.include.mapper=/mapper-[\\w-\\.]+jar
restart.include.pagehelper=/pagehelper-[\\w-\\.]+jar
# 因为我项目中引用了 org.crazycake:shiro-redis ,所以要引用下面这个配置
restart.include.shiro=/shiro-[\\w-\\.]+jar
https://blog.csdn.net/wang1988081309/article/details/81073371