堆栈跟踪:WARN org.hibernate.util.JDBCExceptionReporter - SQL错误:-5501,SQLState:42501 错误org.hibernate.util.JDBCExceptionReporter - 用户缺少未找到的权限或对象:TEST_CASE
我的applicationContext-junit-test.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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="defaultAutoCommit" value="false">
</property>
<property name="driverClassName">
<value>org.hsqldb.jdbcDriver</value>
</property>
<property name="url">
<value>jdbc:hsqldb:mem:testcasedb;shutdown=true;hsqldb.write_delay=false;</value>
</property>
<property name="username">
<value>sa</value>
</property>
<property name="password">
<value></value>
</property>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<!-- <prop key="hibernate.hbm2ddl.auto">validate</prop> -->
<prop key="hibernate.connection.autocommit">true</prop>
</props>
</property>
<property name="annotatedClasses">
<list>
<value>com.rakuten.hashi.testcaseapi.dto.request.TestCase</value>
</list>
</property>
</bean>
</beans>
TestCase.java file:
@Entity
@Table(name = "test_case", schema = "testcase")
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@XmlRootElement
public class TestCase implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "ID", nullable = false)
private Long Id;
public Long getId() {
return Id;
}
public void setId(Long id) {
Id = id;
}
}
**DBUtil.java** runs the DDL and DML hsql files and DB is created successfully(I have printed DB on console).
public class DBUtil {
public static void createTestSchema() {
String sqlPath = "src/test/resources/sql";
ApplicationContext dbCtx = new ClassPathXmlApplicationContext("applicationContext-junit-test.xml");
BasicDataSource ds = dbCtx.getBean(BasicDataSource.class);
Connection conn = ds.getConnection();
Statement st = null;
try {
System.out.println("Creating Schema !");
File dir = new File(sqlPath);
File[] files = dir.listFiles();
SqlFile sqlFile;
for (File file : files) {
sqlFile = new SqlFile(file);
sqlFile.setConnection(conn);
sqlFile.execute();
}
}
}
DaoImpl.java
我的HQL查询获取零结果(如果我将hbm2ddl.auto设置为“create”)
我的HQL查询抛出JDBCExceptionReporter:用户缺少未找到的权限或对象(如果我不使用hbm2ddl.auto属性)
public class DaoImpl implements Dao {
@Autowired
private SessionFactory sessionFactory;
public void getAllData(){
String hql = "FROM TestCase";
Session session = sessionFactory.openSession();
List<TestCase> results;
try {
Query query = session.createQuery(hql);
results = query.list(); // list is empty : []
} catch (Exception e) {
}
}
}
答案 0 :(得分:1)
来自TestCase.java
我删除了@Table中的模式并且它有效。我还删除了DDL中的Create Schema和类似的引用。
如此更新的TestCase.java将如下所示:
@Entity
@Table(name = "test_case")
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@XmlRootElement
public class TestCase implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "ID", nullable = false)
private Long Id;
public Long getId() {
return Id;
}
public void setId(Long id) {
Id = id;
}
}
答案 1 :(得分:0)
您的数据库URL属性对于内存数据库是错误的。正确使用文件的属性:和mem:database如下:
<property name="url">
<value>jdbc:hsqldb:file:testcasedb;shutdown=true;hsqldb.write_delay=false;</value>
<property name="url">
<value>jdbc:hsqldb:mem:testcasedb</value>
如果对mem:database使用shutdown = true,则在上次打开的连接关闭后,所有数据都将被删除。使用文件数据库,可以保存所有数据。