<property name="hibernate.transaction.factory_class" value="org.hibernate.transaction.JTATransactionFactory"/>
<property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.WeblogicTransactionManagerLookup"/>
<property name="hibernate.transaction.flush_before_completion" value="true"/>
<property name="hibernate.transaction.auto_close_session" value="true"/>最后,使用Hibernate进行端到端的测试
现在,我们专为Weblogic Server的JTA事务配置了Hibernate。这时运行测试没有出现错误,表明使用了正确的提供者,并为消息给定了一个正确的标识符。
$ ant -q -Dprovider=hibernate
[echo] =====================================================
[echo] Build Configuration for hibernate
[echo] =====================================================
[echo] Base directory : D:\project\switch
[echo] Deployed Target : D:\project\switch/JPAService.ear
[echo] EJB Module : D:\project\switch/tmp/hibernate-ejb.jar
[echo] Configuration : D:\project\switch/META-INF/hibernate/persistence.xml
[echo] Packaging EJB Module for hibernate at D:\project\switch/tmp/hibernate-ejb.jar
[echo] Packaging EAR Module for hibernate at D:\project\switch/JPAService.ear
[echo] Packaging D:\project\switch/tmp/test-JPAService.jar for running the tests
[echo] Undeploying JPAService from t3://localhost:7001 ...
[echo] Deploying JPAService to t3://localhost:7001 ...
[echo] Running JUnit Test: junit.TestJPAService ...
[junit] Logical Persistence Provider is [hibernate]
[junit] Actual Persistence Provider is [org.hibernate.impl.SessionImpl]
[junit] Persisted Message [id:1 timestamp:1182755464176 body:A message sent for logging on 1182755464166]
[junit] Time elapsed between the message to send and persisted is 10ms
重复测试表明已经用ID:2创建了新的消息。
我检查了MySQL数据库,发现当它的值配置为自动生成的时候,主键列标记为自动增加。
mysql> show create table message;
mysql>| message | CREATE TABLE `message` (
`id` bigint(20) NOT NULL auto_increment,
`body` varchar(255) default NULL,
`createdOn` datetime default NULL,
PRIMARY KEY (`id`)
The configuration that create the table definition for us is <property name="hibernate.hbm2ddl.auto" value="create"/>关于Hibernate部署的摘要
总结起来,在Weblogic Server 10.0环境中安装和运行使用Hibernate的JPA应用程序步骤如下。
1. 在Weblogic Server 域中的共享库里添加Hibernate库
2. 配置JTA事务和自动的表定义属性
3. 封装、部署和运行测试进行验证
现在来看一下要采用Kodo运行完全相同的应用程序,我们需要做些什么。
文章来源于领测软件测试网 https://www.ltesting.net/