如何使用JPA解决"Using Hibernate built-in connection pool (not for production use!)",即Hibernate实体管理器



我是Hibernate和JPA的新手。

我读了很多关于这个警告的信息,但我仍然无法解决它。

到目前为止,我读到的答案说,项目中有必要有hibernate.cfg.xml。 但我也读到:

如果你使用的是JPA,即Hibernate EntityManager,你将需要持久性.xml。因此,您通常不需要两者,因为您使用Hibernate专有API或JPA。 (Hibernate的两个配置文件的目的是什么?

使用persistence.xml每次使用Hibernate时我都会收到此警告。

这是我persistence.xml

<persistence version="2.0"
xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="integration"
transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<properties>
<property name="hibernate.dialect"
value="org.hibernate.dialect.MySQL5InnoDBDialect" />
<property name="hibernate.hbm2ddl.auto" value="update" />
<property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/db-name?autoReconnect=true"/>
<property name="hibernate.connection.username" value="root" />
<property name="hibernate.connection.password" value="root" />
<property name="hibernate.show_sql" value="false" />
<property name="hibernate.format_sql" value="true" />
<property name="hibernate.id.new_generator_mappings"
value="true" />
</properties>
</persistence-unit>
</persistence>

我不知道我做错了什么。

提前致谢

这只是一个警告,说明您正在使用的built_in连接池在生产环境中不是合适的解决方案,您应该在生产环境中使用应用程序服务器连接池。 根据您的应用程序服务器,您可以在应用程序服务器中设置数据库连接,然后将 Hibernate 配置为使用该连接。 但是,如果您想在不配置应用程序服务器的情况下解决此问题,您可以看到这一点。

将此代码(连接池代码(添加到持久性.xml文件中。

相关内容

  • 没有找到相关文章

最新更新