JPA的配置文件
————————————————————————————————————————————————————————
JPA规范要求在类路径的META-INF目录下放置persistence.xml, 文件的名称是固定的,配置模板如下:
- <?xml version=”1.0″?>
- <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/persistence_1_0.xsd” version=”1.0″>
- <persistence-unit name=”itcast” transaction-type=”RESOURCE_LOCAL”>
- <properties>
- <property name=”hibernate.dialect” value=”org.hibernate.dialect.MySQL5Dialect” />
- <property name=”hibernate.connection.driver_class” value=”org.gjt.mm.mysqlDriver” />
- <property name=”hibernate.connection.username” value=”root” />
- <property name=”hibernate.connection.password” value=”123456″ />
- <property name=”hibernate.connection.url” value=”jdbc.mysql://localhost:3306/itcast?useUnicode=true&characterEncoding=UTF-8″ />
- <property name=”hibernate.max_fetch_depth” value=”3″ />
- <property name=”hibernate.show_sql” value=”true” />
- <property name=”hibernate.hbm2ddl.auto” value=”update”/>
- </properties>
- </persistence-unit>
- </persistence>
百度找的:
- <?xml version=”1.0″ encoding=”UTF-8″?>
- <persistence version=”1.0″
- xmlns:persistence=”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 persistence_1_0.xsd “>
- <!–
- Name属性用于定义持久化单元的名字 (name必选,空值也合法);
- transaction-type 指定事务类型(可选)
- –>
- <persistence-unit name=”unitName” transaction-type=”JTA”>
- <!– 描述信息.(可选) –>
- <description> </description>
- <!– javax.persistence.PersistenceProvider接口的一个实现类(可选) –>
- <provider> </provider>
- <!– Jta-da
ta-source和 non-jta-da ta-source用于分别指定持久化提供商使用的JTA和/或non-JTA数据源的全局JNDI名称(可选) –> - <jta-da
ta-source>java:/MySqlDS</jta-da ta-source> - <non-jta-da
ta-source> </non-jta-da ta-source> - <!– 声明orm.xml所在位置.(可选) –>
- <mapping-file>product.xml</mapping-file>
- <!– 以包含persistence.xml的jar文件为基准的相对路径,添加额外的jar文件.(可选) –>
- <jar-file>../lib/model.jar</jar-file>
- <!– 显式列出实体类,在Java SE 环境中应该显式列出.(可选) –>
- <class>com.domain.User</class>
- <class>com.domain.Product</class>
- <!– 声明是否扫描jar文件中标注了@Enity类加入到上下文.若不扫描,则如下:(可选) –>
- <exclude-unlisted-classes/>
- <!– 厂商专有属性(可选) –>
- <properties>
- <!– hibernate.hbm2ddl.auto= create-drop / create / update –>
- <property name=”hibernate.hbm2ddl.auto” value=”update” />
- <property name=”hibernate.show_sql” value=”true” />
- </properties>
- </persistence-unit>
- </persistence>
通常在企业开发中,有两种做法:
- 1.先建表,后再根据表来编写配置文件和实体bean。使用这种方案的开发人员受到了传统数据库建模的影响。
- 2.先编写配置文件和实体bean,然后再生成表,使用这种方案的开发人员采用的是领域建模思想,这种思想相对前一种思想更加OOP
建议使用第二种(领域建模思想),从软件开发来想,这种思想比第一种思想更加面向对象。 领域建模思想也是目前比较新的一门建模思想,第一种是传统的建模思想,已经有10来年的发展历程了,而领域建模思想是近几年才兴起的,这种思想更加的面向对象
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/36558.html