我是否需要Persistence.xml中的<class>元素?

我是否需要Persistence.xml中的<class>元素?

我有一个非常简单的sistance.xml文件:

<?xml version="1.0" encoding="UTF-8"?><persistence version="1.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_1_0.xsd">

    <persistence-unit name="eventractor" transaction-type="RESOURCE_LOCAL">
        <class>pl.michalmech.eventractor.domain.User</class>
        <class>pl.michalmech.eventractor.domain.Address</class>
        <class>pl.michalmech.eventractor.domain.City</class>
        <class>pl.michalmech.eventractor.domain.Country</class>

        <properties>
            <property name="hibernate.hbm2ddl.auto" value="validate" />
            <property name="hibernate.show_sql" value="true" />
        </properties>
    </persistence-unit></persistence>

而且起作用了。

但当我移除<class>元素应用程序看不到实体(所有类都用@Entity).

有没有自动扫描机制@Entity上课?


慕容3067478
浏览 284回答 3
3回答

跃然一笑

对于那些在Spring中运行JPA的人,从3.1版开始,您可以设置packagesToScan财产LocalContainerEntityManagerFactoryBean并且完全摆脱了sistence.xml。这是低层的
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java