gpt4 book ai didi

java - 在 JPA 中声明一个没有类的持久单元

转载 作者:行者123 更新时间:2023-11-29 05:34:42 25 4
gpt4 key购买 nike

嗯,我的疑问很简单,但对我来说很奇怪,因为我到处都听到:“你必须在持久单元中声明所有持久类”。

我决定不在我的持久单元中声明任何类,只放置默认配置,我的应用程序即使现在也能正常工作。那么,为什么要在那里申报我的类(class)?

注意:我不知道这个问题是否与上面的 scneario 有关,但是当我尝试加载一个惰性属性时,这个对象中的所有字段都是 NULL 并且在属性“handler”中有类似:JavaLazyInitializer。

编辑 1:

这是我的persistence.xml

<?xml version="1.0" encoding="UTF-8"?>
<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="odontonewPU">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="false" />
<property name="hibernate.hbm2ddl.auto" value="update" />
</properties>
</persistence-unit>

</persistence>

这是我的 applicationContext.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"
xmlns:tx="http://www.springframework.org/schema/tx"
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
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

<!-- Seta anotaçoes para serem usadas pelo Spring -->
<context:annotation-config />

<!-- Define o pacote onde o Spring vai procurar por beans anotados -->
<context:component-scan
base-package="br.com.odontonew" />

<!-- define que as transaçoes irao ser anotadas -->
<tx:annotation-driven proxy-target-class="true" />

<!-- Configuracao do Banco de Dados -->
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost/odontonew" />
<property name="username" value="root" />
<property name="password" value="123456" />
</bean>

<!-- Configuracao do Hibernate -->
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="odontonewPU" />
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="databasePlatform" value="org.hibernate.dialect.MySQLDialect" />
<property name="showSql" value="true" />
</bean>
</property>
</bean>

<!-- Configuracao do gerente de transacoes do Spring -->
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>

</beans>

最佳答案

您不必在 persistence.xml 中声明持久类,至少在 JPA 2.0 中不需要。我不确定 JPA 1。

提供者扫描持久性根中的类并评估注释(@Entity@MappedSuperclass 等)以及 persistence.xml 的内容,所以最后你得到了两个声明的联合。

来自 Pro JPA 2 一书:

如果托管类属于以下类型,则将被包括在内:

  • 本地类:打包persistence.xml的部署单元中的注释类。

  • 映射文件中的类:在 XML 映射文件中具有映射条目的类

  • 明确列出的类:在 persistence.xml

    中作为 class 元素列出的类
  • 托管类的附加 jar:在 persistence.xmljar-file 元素中列出的命名 jar 中的注释类> 文件

关于java - 在 JPA 中声明一个没有类的持久单元,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19929409/

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