亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Spring Boot-休眠會話工廠的句柄

Spring Boot-休眠會話工廠的句柄

寶慕林4294392 2019-11-13 15:42:44
有誰知道如何獲取由Spring Boot創建的Hibernate SessionFactory的句柄?
查看完整描述

3 回答

?
largeQ

TA貢獻2039條經驗 獲得超8個贊

偉大的工作安德里亞斯。我創建了一個Bean版本,以便可以自動裝配SessionFactory。


import javax.persistence.EntityManagerFactory;

import org.hibernate.SessionFactory;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.context.annotation.Bean;


....


@Autowired

private EntityManagerFactory entityManagerFactory;


@Bean

public SessionFactory getSessionFactory() {

    if (entityManagerFactory.unwrap(SessionFactory.class) == null) {

        throw new NullPointerException("factory is not a hibernate factory");

    }

    return entityManagerFactory.unwrap(SessionFactory.class);

}


查看完整回答
反對 回復 2019-11-13
  • 3 回答
  • 0 關注
  • 695 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號