java.sql.SQLException:架构'ROOT'不存在

时间:2011-12-23 11:18:01

标签: hibernate java-ee derby javadb hbm2ddl

我正在使用hibernate与embeded derby,我希望hibernate创建数据库和表,所以我尝试了以下配置,但我收到错误:

java.sql.SQLException: Schema 'ROOT' does not exist

这是我的配置:

    <bean id="sessionFactory"
    class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">

    <property name="dataSource" ref="dataSource" />
    <property name="packagesToScan" value="com.myapp.domain" />


    <property name="hibernateProperties">
        <value>
            hibernate.dialect=org.hibernate.dialect.DerbyDialect
            hibernate.hbm2ddl.auto=create
            hibernate.show_sql=false
            hibernate.format_sql=false
        </value>
    </property>

</bean>

<bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">

    <property name="driverClassName" value="org.apache.derby.jdbc.EmbeddedDriver" />

    <property name="url" value="jdbc:derby:test;create=true" />

    <property name="username" value="root" />

    <property name="password" value="root" />

</bean>

<bean id="transactionManager"
    class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
</bean>


<bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />

更新:这是我第一次使用德比,所以我可能会丢失一些信息,所以我有一个问题:

我必须在此处配置嵌入式Derby:

http://db.apache.org/derby/papers/DerbyTut/install_software.html

更新2:我删除了classpath上的import.sql脚本文件,该文件负责在数据库中插入演示数据,我发现创建数据库表时出错:

1202 [main] INFO org.hibernate.tool.hbm2ddl.SchemaExport - Running hbm2ddl schema export
1202 [main] INFO org.hibernate.tool.hbm2ddl.SchemaExport - exporting generated schema to database
1359 [main] ERROR org.hibernate.tool.hbm2ddl.SchemaExport - Unsuccessful: create table users (user_id bigint generated by default as identity unique, address varchar(255), email varchar(155) not null, mobile varchar(25), name varchar(25) not null, password varchar(255) not null, primary key (user_id))
1359 [main] ERROR org.hibernate.tool.hbm2ddl.SchemaExport - Constraints 'SQL111223214919671' and 'SQL111223214919670' have the same set of columns, which is not allowed. 
1359 [main] INFO org.hibernate.tool.hbm2ddl.SchemaExport - schema export complete
1360 [main] WARN org.hibernate.util.JDBCExceptionReporter - SQL Warning: 10000, SQLState: 01J01
1360 [main] WARN org.hibernate.util.JDBCExceptionReporter - Database 'test' not created, connection made to existing database instead.

3 个答案:

答案 0 :(得分:3)

从类路径中删除import.sql文件并运行应用程序后,我发现错误是数据库已创建,但由于问题http://issues.apache.org/jira/browse/DERBY-789而未由hbm2ddl创建表 这里陈述:constraint problems using apache derby and hbm2ddl

主键不能被定义为唯一键,因为它由数据库本身处理。

所以当我从主键中删除unique属性时,错误就消失了。

答案 1 :(得分:0)

抱歉,我从未使用过Derby,但我认为问题在于Hibernate无法为您创建任何数据库,数据库用户或数据库模式。这只是猜测,但对我来说,错误消息表明您还需要用户的数据库架构。尝试事先创建数据库,数据库用户root和模式根,然后连接Hibernate来创建表。

答案 2 :(得分:0)

最简单的解决方案是配置您的数据库属性并使架构与用户名相同,但在资本来源中:架构APP用户应用程序

希望我的回答可以提供帮助。