persistence.xml
780 字节
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0">
<persistence-unit name="ApplicationEntityManager" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>com.myproject.model.User</class>
<class>com.myproject.model.Role</class>
</persistence-unit>
<!-- WARNING: This file's file original source is at web/common/src/main/resources/META-INF. The
META-INF directory is included in the jsf, spring, struts and tapestry projects using svn:externals.
If you need to modify this file, please do so in web/common/src/main/resources/META-INF, check it
in, and then "svn up" for the other modules. -->
</persistence>