-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Unable to locate current JTA transaction
PostPosted: Wed Aug 27, 2008 9:28 am 
Newbie

Joined: Tue Jul 22, 2008 11:30 am
Posts: 13
Hi all,

I'm having trouble with JTA Transactions. I'm using Weblogic 9.2
I searched the forums and went through some of the hibernate code and i know the reason for the exception (the exception itself tells you why) What i can't figure out is why it can't find the JTA Transaction.

I don't need to do anything special on the weblogic side for JTA right?

Thanks!


here is the hibernate.cfg.xml file:

Code:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

<session-factory>   
   
   <property name="hibernate.jdbc.batch_size">0</property>
   <property name="hibernate.format_sql">false</property>
   <property name="hibernate.use_sql_comments">true</property>
   <property name="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
   <property name="hibernate.cache.use_query_cache">true</property>

   <property name="hibernate.dialect">org.hibernate.dialect.SybaseDialect</property>

    <property name="current_session_context_class">jta</property>
    <property name="transaction.factory_class">org.hibernate.transaction.JTATransactionFactory</property>
    <property name="transaction.manager_lookup_class">org.hibernate.transaction.WeblogicTransactionManagerLookup</property>                                    
   <property name="hibernate.connection.datasource">jdbc/testDS</property>      
   <property name="hibernate.jndi.class">weblogic.jndi.WLInitialContextFactory</property>
   <property name="hibernate.jndi.url">t3://localhost:7022</property>
      
   <mapping class="TestClass"/>

</session-factory>

</hibernate-configuration>


Here is my test class:

Code:


import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.AnnotationConfiguration;


public class HibernateJTATest
{
   public static void main(String[] args)
   {
      SessionFactory factory = new AnnotationConfiguration().configure()      
      .buildSessionFactory();

      Session session = factory.getCurrentSession();
      Transaction tx = session.beginTransaction();
      TestClass test = (TestClass)session.load(TestClass.class, new Long(1));
      tx.commit();
      session.close();
   }
}

@Entity
@Table(name="Test_table")
class TestClass
{
   Long id;
   String name;
   
   @Id
   public Long getId()
   {
      return id;
   }
   public void setId(Long id)
   {
      this.id = id;
   }
   public String getName()
   {
      return name;
   }
   public void setName(String name)
   {
      this.name = name;
   }
}


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.