- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 dbunit 和 spring dbunit 包含到我的项目中进行测试。我有 2 个文件夹:“src/测试/java/dao”和“src/test/resources/dao”。
在资源dao中
<?xml version='1.0' encoding='UTF-8'?>
<dataset>
<Brands id="1" brandName="Apple" />
</dataset>
尝试过大写和小写(BRANDS、品牌),仍然有同样的问题。
在主java中
public class BrandsDaoTest {
@Autowired
private BrandsDao brandsDao;
private Brand brand;
private static final int ID = 1;
private static final String BRANDNAME = "apple";
private static final String UBRANDNAME = "horizont";
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({ "classpath:app-context.xml","classpath:test-context.xml" })
@TestExecutionListeners({ DependencyInjectionTestExecutionListener.class,
DbUnitTestExecutionListener.class })
@Test
@DatabaseSetup("schema.xml")
public void find(){
Brand brand = brandsDao.find(1);
assertNotNull(brand);
brandsDao.delete(ID);
assertNull(brandsDao.find(ID));
}
}
我的品牌实体:
@Entity
@Table(name = "brands")
public class Brand {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private int id;
@Column(name="BrandName",nullable=false)
private String brandName;
@OneToMany(fetch = FetchType.LAZY)
@JoinColumn(name="BrandId",updatable=false)
private List<Device> devices;
public Brand(){
}
public Brand(int id,String brandName){
this.id = id;
this.brandName = brandName;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getBrandName() {
return this.brandName;
}
public void setBrandName(String brandName) {
this.brandName = brandName;
}
public List<Device> getDevices(){
return this.devices;
}
public void setDevices(List<Device> devices){
this.devices = devices;
}
public boolean equals(Object obj) {
boolean result = false;
if (!(obj instanceof Brand))
return result;
Brand brand = (Brand)obj;
if(this.getId() == brand.getId())
result = true;
return result;
}
}
这是我的连接:
bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="org.h2.Driver"/>
<property name="url" value="jdbc:h2:mem:dbtest;
MODE=MySQL;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE" />
<property name="username" value="sa"/>
<property name="password" value=""/>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan"
value="com.entities" />
<property name="hibernateProperties">
<props>
<prop key="dialect">org.hibernate.dialect.H2Dialect</prop>
<prop key="connection.useUnicode">true</prop>
<prop key="connection.characterEncoding">UTF-8</prop>
<prop key="hibernate.hbm2ddl.auto">create-drop</prop>
</props>
</property>
</bean>
在使用dbunit之前,也遇到过同样的问题,并且
<prop key="hibernate.hbm2ddl.auto">create-drop</prop>
解决了我的问题。现在,如果我的 schema.xml 文件为空并且我使用“brandsDao.create( new Brand() )”方法在其中一种测试方法中添加品牌,一切正常。但是当我添加
<Brands id="1" brandName="Apple" />
在我的 schema.xml 中,我得到了这个“NoSuchTableException:品牌”。
此外,在我将其插入上下文 xml 之前:
<bean id="dbUnitDatabaseConfig" class="com.github.springtestdbunit.bean.DatabaseConfigBean">
<property name="datatypeFactory">
<bean class="org.dbunit.ext.mysql.MySqlDataTypeFactory" />
</property>
<property name="caseSensitiveTableNames" value="true" />
</bean>
<bean id="dbUnitDatabaseConnection" class="com.github.springtestdbunit.bean.
DatabaseDataSourceConnectionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="databaseConfig" ref="dbUnitDatabaseConfig"/>
</bean>
我有“在架构 null 中未找到表‘BRANDS’”。尝试了不同的文章这个错误,但仍然没有任何帮助。我猜当 dbunit 是时我的数据库没有创建尝试从架构插入数据。
将不胜感激一些提示或建议。
最佳答案
感谢艾伦·海伊的回复。我已经在我的 sessionFactory bean 中尝试了您的 hibernate 属性集
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan"
value="com.entities" />
<property name="hibernateProperties">
<props>
<prop key="dialect">${hibernate.dialect}</prop>
<prop key="connection.useUnicode">true</prop>
<prop key="connection.characterEncoding">UTF-8</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.cache.use_second_level_cache">false</prop>
<prop key="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</prop>
</props>
</property>
</bean>
最有帮助的是
<prop key="hibernate.show_sql">true</prop>
它为我提供了虚拟数据库创建的完整跟踪。所有名字都是小写的,所以改变后
<Brands id="1" brandName="Apple" />
至
<brands id="1" brandName="Apple" />
<brands id="2" brandName="Apple2" />
它成功了。我很确定我以前尝试过这个,也许我没有包括
<bean id="dbUnitDatabaseConfig" class="com.github.springtestdbunit.bean.DatabaseConfigBean">
<property name="datatypeFactory">
<bean class="org.dbunit.ext.mysql.MySqlDataTypeFactory" />
</property>
<property name="caseSensitiveTableNames" value="true" />
</bean>
当时。不过现在它工作得很好。再次感谢您的提示。
现在我的 hibernate 属性如下所示:
<props>
<prop key="dialect">org.hibernate.dialect.H2Dialect</prop>
<prop key="connection.useUnicode">true</prop>
<prop key="connection.characterEncoding">UTF-8</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
<!--<prop key="hibernate.show_sql">true</prop> -->
</props>
关于java - DBunit NoSuchTableException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25821235/
(新手 DBUnit 问题警报!) 看来每个表的 DBUnit 都会“从表中删除所有记录,然后执行插入操作”。 这意味着您无法使用 xml 加载文件顺序清除数据,因为在从其他表中删除记录之前,任何约束
我们正在使用 CsvDataFileLoader 加载我们的引用数据,如下所示: new InsertIdentityOperation(DatabaseOperation.CLEAN_INSERT)
您好,我正在尝试进行集成测试, 我使用码头作为容器和 dbunit 来填充内存数据库中的 HSQLDB。 我用来用 dataset.xml 文件填充数据库的代码是有效的,因为我在我的单元测试中使用了它
我有以下 java 代码,它给出了以下错误: import java.io.File; import java.io.FileOutputStream; import java.sql.Connect
我遇到了 DBUnit (V2.5.3) 的问题,我想将属性 FEATURE_ALLOW_EMPTY_FIELDS 设置为 true,但 DBUnit 忽略了此设置。我设置属性的代码是: Databa
我觉得这很容易理解,但是我很难找到有关如何更改DBUnit日志级别的信息。谁能为我解决这个问题? 最佳答案 避免了一段时间后,我找到了解决方案。 import org.slf4j.Logger imp
我更新了我的 composer.json 文件以包含 dbunit: "require-dev": { "phpunit/phpunit": "^7", "phpunit/dbunit
我正在使用 dBUnit 并试图用实际的 DB 数据集断言我预定义的 FlatXmlDataSet 的一行。问题是当数据来自 FlatXmlDataSet 时,我的验证码字段的 getValue 返回
我正在为使用 JPA 的存储库层编写集成测试。然而,每次测试后,它都会在数据库中留下大量垃圾,我想在测试结束时将其清除。我正在查看 DBUnit,它似乎能够重新初始化我的数据库。然而扩展测试用例的事情
我想尝试使用 DBUnit 进行单元测试,但我的数据集有问题。 这是我的持久性对象: @Entity @Table(name = "personnes") public class Personne
我想知道是否有一种方法可以存储和检索元表数据以及完整或平面 XML 文件,主要是有关数据库架构主键的信息。 最佳答案 dbUnit 在处理时读取数据库元数据,但不存储它。它的所有操作都是为了数据处理。
我有以下 dbunit 配置 org.codehaus.mojo dbunit-maven-plugin 1.0-beta-3
我正在使用 maven dbunit 插件(调整版本 1.0-beta-3)。 在我的 pom.xml 文件中,我定义了很少执行的插件: org.codehaus.mojo dbun
我正在尝试将 dbunit 和 spring dbunit 包含到我的项目中进行测试。我有 2 个文件夹:“src/测试/java/dao”和“src/test/resources/dao”。 在资源
看起来 DbUnit 正在使用 JDBC 元数据来确定主键字段并使用这些字段构造删除语句: delete from tbl_name where pk_field1=? and pk_field2=?
对 DBUnit 感到沮丧:(有人知道为什么我会得到下面的 dbAssertionFailedError driverClass is null 吗?dbunitData.xml 包含一行测试数据。我
我在Java7中有一个带有Spring和DbUnit 2.5.4的Java项目。 我想禁用DbUnit键检查,但仅针对其中有许多表被交叉引用的特定测试。 我尝试了此代码,但没有成功。 如何仅为此测试禁
我有一个包含 Spring + Maven + JPA (Hibernate) 的系统。我使用 Junit 和 DBUnit。我有一个带有生成 id 的实体:在测试期间它不会重置序列。我该如何解决这个
我有一个 Hibernate 实体,它与其自身具有递归关系(父子关系)。我使用 DbUnit XML 文件在测试中插入一些数据,包括关系。 但是,在我的测试中查询parent=null(根)列表的服务
我的数据库单元测试有问题,该测试测试数据是否正确保存。因此,我用我的数据创建了一个示例数据库,并尝试将设置和预期数据进行比较。 id 生成和其他一切都应该由 hibernate 管理 @RunWith
我是一名优秀的程序员,十分优秀!