注册
 找回密码
 注册
江西广告网
查看: 1225|回复: 0
打印 上一主题 下一主题

[JAVA] 使用JPA的不同实现的配置

[复制链接]

该用户从未签到

1
跳转到指定楼层
发表于 2008-12-26 17:54:21 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?注册

x
以前使用JPA的实现是toplink,现在改为hibernate,所以要修改persistence.xml文件,两者的配置有一些不一样,并且在EE环境下面和SE的环境下面也有不一样,还有一点,那就是当persistence.xml里面有些格式出错的时候,虽然出错的不是我们需要的那个单元,但也会使得整个persistence.xml报废。 下面帖的是在SE的环境下面使用toplink和hibernate的实现,两者都写在同一个persistence.xml里面。这样切换起来也方便一些。 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --><?xml version="1.0" encoding="UTF-8"?> <persistence version="1.0" 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_1_0.xsd"> <persistence-unit name="TestSSH2PU" transaction-type="RESOURCE_LOCAL"> <provider>oracle.toplink.essentials.PersistenceProvider</provider> <class>com.hadeslee.jpaentity.Department</class> <class>com.hadeslee.jpaentity.Person</class> <properties> <property name="toplink.jdbc.user" value="sa"/> <property name="toplink.jdbc.password" value="hadeslee"/> <property name="toplink.jdbc.url" value="jdbc:microsoft:sqlserver:// localhost:1433;DatabaseName=testSSH"/> <property name="toplink.jdbc.driver" value="com.microsoft.jdbc.sqlserver.SQLServerDriver"/> <property name="toplink.ddl-generation" value="create-tables"/> </properties> </persistence-unit> <persistence-unit name="TestSSH1PU2" transaction-type="RESOURCE_LOCAL"> <provider>org.hibernate.ejb.HibernatePersistence</provider> <class>com.hadeslee.jpaentity.Department</class> <class>com.hadeslee.jpaentity.Person</class> <properties> <property name="hibernate.connection.driver_class" value=" com.microsoft.jdbc.sqlserver.SQLServerDriver"/> <property name="hibernate.connection.url" value=" jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=testSSH"></property> <property name="hibernate.connection.username" value="sa"></property> <property name="hibernate.connection.password" value="hadeslee"></property> <property name="hibernate.show_sql" value="true"></property> <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"></property> <property name="hibernate.current_session_context_class" value="thread"></property> </properties> </persistence-unit> </persistence> 在SE的环境下面,是不能使用容器的JTA的数据源的。并且不能使用<exclude-unlisted-classes>true</exclude-unlisted-classes>这个属性。 本文重点是记录下两个常用的JPA的实现的配置。目前是在SE环境下的配置。EE环境下面的配置如下: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --><?xml version="1.0" encoding="UTF-8"?> <persistence version="1.0" 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_1_0.xsd"> <persistence-unit name="unit_mssql" transaction-type="JTA"> <provider>oracle.toplink.essentials.PersistenceProvider</provider> <jta-data-source>MobileOAMSSQL</jta-data-source> <properties> <property name="toplink.ddl-generation" value="create-tables"/> <property name="toplink.logging.level" value="FINE"/> </properties> </persistence-unit> <persistence-unit name="MyApp-ejbPU2" transaction-type="JTA"> <provider>org.hibernate.ejb.HibernatePersistence</provider> <jta-data-source>MobileOAMYSQL</jta-data-source> <properties> <property name="hibernate.hbm2ddl.auto" value="update"/> <property name="hibernate.show_sql" value="true"/> </properties> </persistence-unit> </persistence> 在EE环境下面使用JPA配置就简单了许多,首先他可以把当前模块的CLASS文件都包括进来,不用手工指定。并且也少了很多有关于数据库连接的操作,因为这个时候都是从容器里面去取数据源的。并且此时的事务是由容器去管理的,也就是使用JTA,不再是RESOURCE_LOCAL了。这样在代码里面就不用em.getTransaction()。begin();和em.getTransaction()。commit()了,并且可以使用注入功能,把EntityManager注入到使用它的地方了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表