当前位置:   article > 正文

Mybatis+Spring boot整合趟坑————自定义TypeHandler_springboot里面mybatisautoconfiguration加上自定义typehandl

springboot里面mybatisautoconfiguration加上自定义typehandler

Spring boot+mybatis整合使用的mybatis-spring-boot-starter,可以参考

springboot(六)-如何优雅的使用mybatis.html


通过注解的形式就可以实现与mybatis整合。


因为JAVA原生的日期处理比较恶心,最近习惯了joda Time。

但是mybatis不像JPA 与原生支持Joda,所以在日期型是Joda Datetime类型的时候,会报错。


具体可以参考这篇文章:https://stackoverflow.com/questions/35639538/typehandler-with-mappedjdbctypes


然后我就尝试了各种增加自定义typehandler的方法,结果都失败。。。

最后去翻mybatis的autoconfig的源码,发现居然可以直接配置handler的位置,问题搞定

mybatis:
  configuration:
    map-underscore-to-camel-case: true
  type-handlers-package: com.*.*.*.*.mybatis.handlers

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/173058?site
推荐阅读
相关标签
  

闽ICP备14008679号