사용자 도구

사이트 도구


java:jpa:persistence.xml

문서의 이전 판입니다!


JPA persistence.xml

  • META-INF 디렉토리 안에 넣는다.
  • 기본 뼈대
    <persistence 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"
             version="2.0">
    <persistence-unit name="unitname" transaction-type="RESOURCE_LOCAL">
      <provider>org.hibernate.ejb.HibernatePersistence</provider>
      <exclude-unlisted-classes>false</exclude-unlisted-classes>
      <mapping-file>ormap.xml</mapping-file>
      <class>org.acme.Employee</class>
      <class>org.acme.Person</class>
      <class>org.acme.Address</class>
      <properties>
         <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
       </properties>
      </persistence-unit>
    </persistence>
java/jpa/persistence.xml.1386308957.txt.gz · 마지막으로 수정됨: 2013/12/06 14:49 저자 kwon37xi