2

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

我决定不在我的持久单元中声明任何类,只需放置默认配置,即使现在我的应用程序也可以正常工作。那么,为什么要在那里声明我的课程呢?

注意: 我不知道这个问题是否与上面的 scneario 有关,但是当我尝试加载惰性属性时,该对象中的所有字段都是 NULL 并且在属性“处理程序”中具有类似: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>
4

1 回答 1

3

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

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

Pro JPA 2书中:

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

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

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

  • 显式列出的类:作为class元素列出的类persistence.xml

  • 托管类的附加 jar :文件jar-file元素中列出的命名 jar 中的注释类persistence.xml

于 2013-11-12T13:18:38.557 回答