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

时间:2013-11-12 12:38:01

标签: java hibernate jpa

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

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

注意: 我不知道这个问题是否与上面的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>

1 个答案:

答案 0 :(得分:3)

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

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

来自Pro JPA 2书:

如果托管类属于以下类别,则会包含托管类:

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

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

  • 明确列出的类:在class

  • 中列为persistence.xml个元素的类
  • 其他jars托管类jar-file文件的persistence.xml元素中列出的命名jar中带注释的类