博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring3,unitils 与dbunit整合问题记录
阅读量:6590 次
发布时间:2019-06-24

本文共 1306 字,大约阅读时间需要 4 分钟。

unitils 3.3版本,spring3.2.4

1.Caused by: java.lang.IllegalStateException: org.slf4j.LoggerFactory could not be successfully initialized. See also http://www.slf4j.org/codes.html#unsuccessfulInit

SLF4J: Class path contains multiple SLF4J bindings.

SLF4J: Found binding in [jar:file:/E:/user/.m2/repository/org/slf4j/slf4j-nop/1.4.3/slf4j-nop-1.4.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/E:/user/.m2/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: slf4j-api 1.6.x (or later) is incompatible with this binding.
SLF4J: Your binding is version 1.5.5 or earlier.
SLF4J: Upgrade your binding to version 1.6.x.

和日志有关,日志可以正常打,但使用unitils跑安全失败报如上错,原因是unitils 3.3依赖的dbunit2.2.2加载slf4j版本有兼容问题,升级dbunit版本可解决

注:slf4j-api,slf4j-log4j12使用的1.7.5,log4j使用1.2.17

2.Caused by: org.dbunit.dataset.NoSuchColumnException: t_user.ID -  (Non-uppercase input column: id) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.

unitils 3.3默认依赖dbunit2.2.2会报如上问题,网上查了说是bug说要改源码或者换dbunit2.4.2,不想改源码,换2.4.2不行,dbunit换当前最新的版本2.4.9也不行,最后试了一下前几个版本2.4.X版本中,只有2.4.3可以,其它都不行,问题搞定

转载于:https://my.oschina.net/toopoo/blog/167109

你可能感兴趣的文章
java中GC的基本概念
查看>>
building xxx gradle project info的解决办法
查看>>
在 CentOS 7 上搭建 Jenkins + Maven + Git 持续集成环境
查看>>
数据结构与算法 | Leetcode 19. Remove Nth Node From End of List
查看>>
[LeetCode] 862. Shortest Subarray with Sum at Least K
查看>>
【分享】终端命令工具 自动生成vue组件文件以及修改router.js
查看>>
[LeetCode] Student Attendance Record I
查看>>
PHP回顾之多进程编程
查看>>
spring boot + redis
查看>>
Ajax技术细节
查看>>
nuxt.js部署vue应用到服务端过程
查看>>
删除数组中的指定元素 | JavaScript
查看>>
CSS3+JS实现静态圆形进度条【清晰、易懂】
查看>>
关于树形插件展示中数据结构转换的算法
查看>>
图片加载框架之Fresco
查看>>
高性能web建站规则(将js放在页面底部)
查看>>
Java EnumMap工作原理及实现
查看>>
阐述Spring框架中Bean的生命周期?
查看>>
虚拟内存管理
查看>>
注水、占坑、瞎掰:起底机器学习学术圈的那些“伪科学”
查看>>