사용자 도구

사이트 도구


java:jpa:xml_config

문서의 이전 판입니다!


JPA XML Configuration

기본 orm.xml 뼈대

<?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_2_1.xsd"
	version="2.1">
	<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>
java/jpa/xml_config.1423706420.txt.gz · 마지막으로 수정됨: 2015/02/12 11:00 저자 kwon37xi