gpt4 book ai didi

spring - 带有 persistence.xml 的 Intellij JPA 控制台

转载 作者:行者123 更新时间:2023-12-05 08:58:31 25 4
gpt4 key购买 nike

我正在使用 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

最佳答案

好的,就在这里。我不是 100% 确定这是否对您的情况有帮助,但我认为这是您需要做的:从数据库选项卡(通常在您的右侧)将 jdbc 连接添加到您的数据库 Add a jdbc connection to your database


然后将休眠方面添加到您的模块转到模块 (alt+ctrl+shift+s) 然后添加它: enter image description here
现在您已经启用了左侧的持久性选项卡(通常),您可以将数据源分配给您的

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


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

关于spring - 带有 persistence.xml 的 Intellij JPA 控制台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23058936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com