Spring Hibernate-現在のスレッドのトランザクション同期セッションを取得できませんでした


105

Spring + Hibernateでアプリケーションを作成しましたが、常にこのエラーが発生します。これは、Hibernateを使用した最初のアプリケーションです。いくつかのガイドを読みましたが、この問題を解決できません。どこで間違っているのですか?

これは私のアプリケーションのコードです

ott 05, 2014 4:03:06 PM org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh
Informazioni: Refreshing   org.springframework.context.support.ClassPathXmlApplicationContext@1eab16b: startup date  [Sun Oct 05 16:03:06 CEST 2014]; root of context hierarchy
ott 05, 2014 4:03:06 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
Informazioni: Loading XML bean definitions from class path resource [springConfig.xml]
ott 05, 2014 4:03:08 PM org.hibernate.annotations.common.reflection.java.JavaReflectionManager <clinit>
INFO: HCANN000001: Hibernate Commons Annotations {4.0.5.Final}
ott 05, 2014 4:03:08 PM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {4.3.6.Final}
ott 05, 2014 4:03:08 PM org.hibernate.cfg.Environment <clinit>
INFO: HHH000206: hibernate.properties not found
ott 05, 2014 4:03:08 PM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
ott 05, 2014 4:03:09 PM org.hibernate.dialect.Dialect <init>
INFO: HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
ott 05, 2014 4:03:09 PM org.hibernate.engine.transaction.internal.TransactionFactoryInitiator initiateService
INFO: HHH000399: Using default transaction strategy (direct JDBC transactions)
ott 05, 2014 4:03:09 PM org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory <init>
INFO: HHH000397: Using ASTQueryTranslatorFactory
Exception in thread "main" org.hibernate.HibernateException: Could not obtain transaction-synchronized Session for current thread
at org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:134)
at org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:1014)
at coreservlets.StudentDAOImpl.create(StudentDAOImpl.java:19)
at coreservlets.MainApp.main(MainApp.java:14)

student.java

package coreservlets;

public class Student {

    private Integer id;
    private String name;
    private Integer age;

    public Integer getId(){return id;}//getId

    public void setId(Integer id){this.id=id;}//setId

    public String getName(){return name;}//getName

    public void setName(String name){this.name=name;}//setName

    public Integer getAge(){return age;}//getAge

    public void setAge(Integer age){this.age=age;}//setAge

}//Student

studentDAO.java

package coreservlets;

import org.hibernate.SessionFactory;

public interface StudentDAO {

    public void setSessionFactory(SessionFactory sessionFactory);

    public void create(String name,Integer age);

}//StudentDAO

StudentDAOImpl.java

package coreservlets;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

@Repository
public class StudentDAOImpl implements StudentDAO {

    private SessionFactory sessionFactory;

    @Autowired
    public void setSessionFactory(SessionFactory sessionFactory){
        this.sessionFactory=sessionFactory;
    }//setSessionFactory

    public void create(String name,Integer age){
        Session session=sessionFactory.getCurrentSession();
        Student student=new Student();
        student.setName(name);
        student.setAge(age);
        session.save(student);
    }//create

}//StudentDAOImpl

MainApp.java

package coreservlets;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {

    public static void main(String[] args) {

        ApplicationContext context=new ClassPathXmlApplicationContext("springConfig.xml");

        StudentDAOImpl student=(StudentDAOImpl) context.getBean("studentDAOImpl");

        student.create("Alessandro", new Integer(33));


    }//main

}//MainApp

springConfig.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">

<context:annotation-config/>

<context:component-scan base-package="coreservlets"/>

<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource">
  <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
  <property name="url" value="jdbc:mysql://localhost:3306/spring_hibernate"/>
  <property name="username" value="root"/>
  <property name="password" value="password"/>
  <property name="initialSize" value="5"/>
  <property name="maxTotal" value="10"/>
</bean>

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="hibernateProperties">
    <value>
            hibernate.dialect=org.hibernate.dialect.MySQLDialect
    </value>
</property>

</bean>

</beans>

SQL

create table student
(
id integer not null auto_increment,
name varchar(20) not null,
age integer not null,
primary key(id)
);

3
DAOのcreateメソッドに@Transactionalを追加してみましたか?
John

1
HibernateTransactionManagerを宣言し、Hibernateトランザクションを使用してメソッドを作成するのを忘れていました。
JB Nizet 2014年

@itachiは正しくありませんsessionFactory.openSession()。トランザクションは無効になります。同じセッションではないからです。>アノテーション@Transactional of springをクラスサービスに追加します@Patrikokoは正しいです!この質問を参照してください:stackoverflow.com/questions/15620355/…例:@Transactional(readOnly = true, propagation = Propagation.REQUIRED, rollbackFor = {java.lang.Exception.class})
nvnpnco '19

回答:


200

あなたはしなければならない可能トランザクションサポートを(<tx:annotation-driven>または@EnableTransactionManagement)と宣言するtransactionManagerと、それは通過動作するはずですSessionFactory

に追加する必要があり@Transactionalます@Repository

Spring では@Transactional@Repositoryトランザクションサポートをリポジトリに適用できます。

あなたのStudentクラスには@ javax.persistence。*アノテーションhowがありません。@Entity私はそのクラスのマッピング構成がXMLで定義されていると想定しています。


1
動作しないため、アプリケーションのコードを記述できます。これは、Hibernateを使用した最初のアプリケーションです
Alex

3
<tx:annotation-driven>に相当するアノテーションは、@ EnableTransactionManagement
Anand Rockzzで

5
また、必ずorg.springframework.transaction.annotation.Transactionalを使用し、ないjavax.persistance.Transactional作る
imnd_neel

乾杯の仲間、私はこの注釈を見逃したとは信じられません:)。
Boldbayar 2016

1
トランザクションを機能させるために何時間も試してみましたが、最後に<tx:annotation-driven>の代わりに@EnableTransactionManagementを使用したところ、すべてが完全に機能しました。マヌエルに感謝しきれない
アブスライマン2017

39

私は同じ問題を抱えていましたが、サービス層の一部ではなかったクラスで。私の場合、トランザクションマネージャはgetBean()メソッドによってコンテキストから単純に取得され、クラスはビューレイヤに属していました-私のプロジェクトはOpenSessionInViewテクニックを利用しています。

sessionFactory.getCurrentSession()この方法では、著者のと同じ例外を発生させてきました。私にとっての解決策はかなりシンプルでした。

Session session;

try {
    session = sessionFactory.getCurrentSession();
} catch (HibernateException e) {
    session = sessionFactory.openSession();
}

場合はgetCurrentSession()この方法が失敗し、openSession()トリックに行う必要があります。


Hibernate3からHibernate5にアップグレードするとき、コードをSessionFactoryUtils.getSession()からsessionFactory.getCurrentSession()に変更する必要がありました。そのときに同じエラーが発生しました。
user811433 2016

2
これは本当に厄介な振る舞いをもたらします。sessionFactory.getCurrentSession();成功した場合、セッションは閉じられませんが、sessionFactory.openSession();成功した場合、閉じられなければなりません
Richard Tingle

1
@RichardTingleに同意します。openSessionは例外を回避するためのハックのようです。このためのアイドルソリューションは何ですか?
Praveen Shendge

@Praveenが実際に行ったのは、ラムダFunction<Session,T>を受け入れるサービスに「セッションがあった場合、Xを実行するために使用する」という意味でした。次に、このメソッドはプロビジョニングと(必要な場合は)セッションのプロビジョニング解除を処理し、Tを返します。したがって、サービスの外部のコンシューマーが実際にセッションに参加することはありません
Richard Tingle

これにより、エラーの兆候なしにプログラムが実行されました。この方法で作成された複数のクエリにまたがるトランザクションがないのではないかと心配しています。つまり、一貫性のない結果を返すリスクがあるということですか。
Ole VV


3

xyz.DAOImpl.java

次の手順を実行します。

// Step-1:セッションファクトリを設定する

@Resource(name="sessionFactory")
private SessionFactory sessionFactory;

public void setSessionFactory(SessionFactory sf)
{
    this.sessionFactory = sf;
}

// Step-2:現在のセッションの取得を試み、HibernateException例外をキャッチします。


// Step-3:HibernateException例外がある場合、trueの場合はopenSessionを取得します。

try 
{
    //Step-2: Implementation
    session = sessionFactory.getCurrentSession();
} 
catch (HibernateException e) 
{
    //Step-3: Implementation
    session = sessionFactory.openSession();
}

こんにちは!Hibernateはそれだけでそれを行うことになっていますか?
クリス

2

これらの構成をweb.xmlに追加したところ、うまく機能しました。

<filter>
    <filter-name>OpenSessionInViewFilter</filter-name>
    <filter-class>org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</filter-class>
    <init-param>
        <param-name>sessionFactoryBeanName</param-name>
        <param-value>sessionFactory</param-value>
    </init-param>
    <init-param>
        <param-name>flushMode</param-name>
        <param-value>AUTO</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>OpenSessionInViewFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

さらに、最もランク付けされた回答は、最初の実行時にアプリケーションがパニックにならないようにする手がかりを与えてくれます。


1
私はspringMVC 4とHibernate 5を使用しています
何德福

2

DAOメソッドへのトランザクションを許可する必要があります。追加、

@Transactional(readOnly = true, propagation=Propagation.NOT_SUPPORTED)

あなたのdaoメソッドを超えて。そして@Transactional、パッケージからでなければなりません:

org.springframework.transaction.annotation.Transactional

1

@Transactional アノテーションを使用したファイルで間違ったクラスをインポートしていたため、このエラーも発生しました

import javax.transaction.Transactional; 

javaxの代わりに、

import org.springframework.transaction.annotation.Transactional; 

1

私の解決策は、(Springを使用して)失敗したメソッドを、トランザクションを作成してコミットする別のメソッド内に置くことでした。

そのために、私は最初に以下を注入しました:

@Autowired
private PlatformTransactionManager transactionManager;

そして最後にこれを行いました:

public void newMethod() {
    DefaultTransactionDefinition definition = new DefaultTransactionDefinition();
    TransactionStatus transaction = transactionManager.getTransaction(definition);

    oldMethod();

    transactionManager.commit(transaction);
}

1

@Transactional =javax.transaction.Transactional。すぐそばに置き@Repositoryます。


0

私の設定はこのようなものでした。私はQuartzJob、Service Bean、Dao を持っていました。通常どおり、LocalSessionFactoryBean(休止状態用)とQuartzフレームワーク用のSchedulerFactoryBeanで構成されていました。クォーツジョブを書き込み中に、誤って私は@でそれを注釈付きのサービス、私は別の戦略を使用したために配線することを行っているべきではありませんQuartzBeanを使用してAutowiringSpringBeanJobFactory拡張SpringBeanJobFactoryを

つまり、実際に起こっていたのは、Quartz Autowireにより、TXがJob Beanに注入されていたと同時に、Tx Contextが@ Serviceアノテーションによって設定されていたため、TXが同期していなかったということです。

上記の解決策で問題が実際に解決されなかった人に役立つことを願っています。私はSpring 4.2.5とHibernate 4.0.1を使用していましたが、

このスレッドには、@を追加する必要のない提案があることがわかりますトランザクションの DAO(@に注釈がリポジトリ)、それは@無用の提案の原因となっているリポジトリは、それが持っている必要があるものすべてが特別に設定する必要はありません持っている@そのトランザクションにDAOは、@ Trasancationalによってすでに注入されているサービスから呼び出されるため。これがQuartz、Spring、およびHibernateを一緒に使用している人々の役に立つと思います。


0

追加transaction-managerあなたの<annotation-driven/>中の春-servlet.xml:

<tx:annotation-driven transaction-manager="yourTransactionBeanID"/>

0

daoクラスを確認してください。それはこのようでなければなりません:

Session session = getCurrentSession();
Query query = session.createQuery(GET_ALL);

そして注釈:

@Transactional
@Repository

0

同じ問題が発生し、コンポーネントスキャンエレメントが有効になって<tx:annotaion-driven />いる[dispatcher]-servlet.xml場所でが定義されていないことが最終的にわかりました@serviceアノテーション付きクラスを。

<tx:annotaion-driven />コンポーネントスキャンエレメントを組み合わせるだけで、問題は解消されました。


0

私の同様の問題は、以下の2つのアプローチで修正されました。

1)トランザクションを手動で処理する:

Session session = sessionFactory.getCurrentSession();
Transaction tx = session.beginTransaction();
UserInfo user = (UserInfo) session.get(UserInfo.class, 1);
tx.commit();

2)web.xmlフィルターでトランザクションを開いて管理し、必ず使用するようにSpringに指示します@Repository @Transactional

<filter>
  <filter-name>hibernateFilter</filter-name>
  <filter-class>org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</filter-class>
  <init-param>
    <param-name>sessionFactory</param-name>
    <param-value>session.factory</param-value>
  </init-param>
</filter>
<filter-mapping>
  <filter-name>hibernateFilter</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>

0

mannedearのコメントをありがとう。私はspringmvcを使用しており、私の場合は次のように使用する必要があります

@Repository
@Transactional
@EnableTransactionManagement
public class UserDao {
...
}

また、pom.xmlにspring-contextを追加すると、機能します


0

同じ問題がありました。私はそれを次のように解決しました:

  1. 次の行をdispatcher-servletファイルに追加します。

    <tx:annotation-driven/>

    <beans>同じファイルの上記のセクションを確認してください。次の2行が存在している必要があります。

    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation= "http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"
  2. また、追加@Repositoryした@Transactional場所と使用してsessionFactoryいる場所を確認してください。

    @Repository
    @Transactional
    public class ItemDaoImpl implements ItemDao {
        @Autowired
        private SessionFactory sessionFactory;

-1

上記のこのクラスでは、@Repositoryもう1つのアノテーションを配置しただけで@Transactional機能します。動作する場合は、返信(Y/ N)で返信します。

@Repository
@Transactional
public class StudentDAOImpl implements StudentDAO

1
SOへようこそ。親切にどのようにすれば良い答えを書くことができます。SOでは、Y / Nと返信する習慣はありません。あなたの答えがその人のために機能する場合、彼らがマークした人は受け入れられたものとしてマークされます。役立つ回答も支持されているかもしれません。
Sri9911
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.