문서의 이전 판입니다!
orm.xml
) 엔티티를 설정하는 것도 가능하다.META-INF/orm.xml
이며, 이 경우에는 자동으로 읽는다.<mapping-file>package/to/orm.xml</mapping-file>
형태로 기술한다.<?xml version="1.0" encoding="UTF-8" ?> <entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm ; http://java.sun.com/xml/ns/persistence/orm_1_0.xsd" version="1.0"> <description>My First JPA XML Application</description> <package>entity</package> <entity class="entity.Employee" name="Employee"> <table name="EMPLOYEETABLE"/> <attributes> <id name="empId"> <generated-value strategy="TABLE"/> </id> <basic name="empName"> <column name="EMP_NAME" length="100"/> </basic> <basic name="empSalary"> </basic> </attributes> </entity> </entity-mappings>