带有persistence.xml的Intellij JPA控制台

时间:2014-04-14 11:30:24

标签: spring jpa intellij-idea

我正在使用Intellij 13+设置一个不含xml的持久性JPA / Hibernate 4 + / Spring 3+。当我尝试在jpa控制台中执行查询时,出现以下错误:

javax.persistence.PersistenceException: Unable to build entity manager factory
java.lang.RuntimeException: org.hibernate.boot.registry.selector.spi.StrategySelectionException: Unable to resolve name [org.hibernate.dialect.PostgreSQL9Dialectt.PostgreSQL9Dialect] as strategy [org.hibernate.dialect.Dialect]

使用默认的postgres方言,我得到同样的错误。 知道发生了什么吗?

配置摘录:

<bean id="entityManagerFactory"
      class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="packagesToScan" value="com.wikiz.service.model.rep" />
    <property name="jpaVendorAdapter">
        <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" />
    </property>
    <property name="jpaProperties">
        <props>
            <prop key="hibernate.dialect">${hibernate.dialect}</prop>
            <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
            <prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
            <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
            <prop key="jadira.usertype.autoRegisterUserTypes">true</prop>
            <prop key="hibernate.ejb.naming_strategy">org.hibernate.cfg.ImprovedNamingStrategy</prop>
        </props>
    </property>
</bean>

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="${db.driver}"/>
    <property name="url" value="${db.url}"/>
    <property name="username" value="${db.user}"/>
    <property name="password" value="${db.pass}"/>
</bean>

变量:

hibernate.dialect=org.hibernate.dialect.PostgreSQL9Dialect
hibernate.show_sql=true
hibernate.format_sql=true
hibernate.hbm2ddl.auto=create

1 个答案:

答案 0 :(得分:8)

好在这里。 我不是百分百确定这是否有助于你的情况,但我认为这是你需要做的: 从数据库选项卡(通常在右侧)向数据库添加jdbc连接 Add a jdbc connection to your database


然后将hibernate facet添加到您的模块中 转到模块( alt + ctrl + shift + s )然后添加它: enter image description here
现在您已经启用了左侧(通常)的持久性选项卡,您可以为

分配数据源

现在添加hibernate配置,但你必须添加hibernate的xml文件。我没有尝试添加spring应用程序上下文而不是 hibernate.cfg.xml 。也许它会起作用...
enter image description here


现在您已启用intellij的预先配置,您可以为其分配数据源 enter image description here
选择您想要的数据源,您将能够将JPA控制台与您的jpa POJO和HSQL一起使用
enter image description here