我有一个带有JSON列的表,当我使用数据集运行我的测试时。
org.dbunit.dataset.NoSuchColumnException: hero.JSON - (Non-uppercase
input column: json) in ColumnNameToIndexes cache map. Note that the map's
column names are NOT case sensitive.
我的数据集:
<?xml version="1.0" encoding="UTF-8"?>
<dataset>
<hero id='000580548' json='{"id" : 1,"name" : "mySuperHero"}'/>
<hero_profile id='000580548-mySuperHero' json='{"habilities": [], "stars" : 7}'/>
</dataset>
Obs:我的表已存在于数据库中。
答案 0 :(得分:1)
默认情况下,DbUnit不了解json字段设置。 要么在测试中省略它,要么为DbUnit编写自定义扩展
答案 1 :(得分:0)
你可以用技巧来做到这一点:
<hero
id="000580548"
json="{"id" : 1,"name" : "mySuperHero"}"
/>
这对我们有用。