[已解决]springBoot 中添加 dev-tools后,运行程序报错Unenhance strategy

Posted ok酱

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[已解决]springBoot 中添加 dev-tools后,运行程序报错Unenhance strategy相关的知识,希望对你有一定的参考价值。


发生条件:
在pom.xml中增加dev-tools的依赖,程序启动后,调用程序接口报错

问题现象:
-------------------------------------------------------------
Registered concrete types: 5 (approximate size: 630.7 kB)
  [interface java.util.Collection] : ArrayList<Object>
  [interface java.util.Map] : LinkedHashMap<Object, Object>
  [interface java.util.Map$Entry] : MapEntry<Object, Object>
  [interface java.util.Set] : LinkedHashSet<Object>
  [interface java.util.List] : ArrayList<Object>
-------------------------------------------------------------
Resolved strategies: 1 (approximate size: 42,825.6 kB)
{source: AppOrganization, dest: AppOrganizationDTO, in-place:false}: InstantiateAndUseCustomMapperStrategy<AppOrganization, AppOrganizationDTO> {customMapper: [email protected], unenhancer: [email protected], objectFactory: DefaultConstructorObjectFactory<AppOrganizationDTO>}
-------------------------------------------------------------
Unenhance strategy: [email protected]
-----end dump of current state-------------------------------
    at ma.glasnost.orika.impl.ExceptionUtility.newMappingException(ExceptionUtility.java:55)
    at ma.glasnost.orika.impl.MapperFacadeImpl.map(MapperFacadeImpl.java:752)
    at ma.glasnost.orika.impl.MapperFacadeImpl.map(MapperFacadeImpl.java:721)

问题原因:
貌似是orika的bug

解决方案:
(参考https://stackoverflow.com/questions/33324944/orika-classcastexception-in-spring-boot-webapp):
  1. Create a META-INF folder in src/main/resources.
  2. Create spring-devtools.properties file in it.
  3. Add restart.include.orika=/orika-core.*\.jar to the file.

 

  








以上是关于[已解决]springBoot 中添加 dev-tools后,运行程序报错Unenhance strategy的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot与Vue交互解决跨域问题亲测已解决

SpringBoot与Vue交互解决跨域问题亲测已解决

SpringBoot进阶教程(六十二)整合Kafka

已解决SpringBoot使用JSP时报错Cannot resolve MVC View ‘XXX‘

(转)SpringBoot项目打包时提示“程序包xxx不存在,找不到符号”解决办法(已解决)

我可以使用已添加为 JAR 依赖项的应用程序中的控制器吗?