Spring + JUNIT4 + JPA/Hibernate + H2 集成测试
在实际开发测试中(这里指带有hibernate或其它orm工具的集成开发),如果数据库服务器连接不上了,怎么办?你可能会想到重新在自己的机器上安装数据库,实际上还有更好的方法:使用更小更方快捷的h2数据库,建库建表自动完成,单元测试,集成测试都很方便 版本环境 spring: 3.1.1.RELEASE spring-test: 3.1.1.RELEASE hibernate.version: 3.5.6-Final junit:4.8 1.Spring 配置文件applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xsi:schemaLocation=