最近中文字幕高清中文字幕无,亚洲欧美高清一区二区三区,一本色道无码道dvd在线观看 ,一个人看的www免费高清中文字幕

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

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

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

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

3 回答

?
largeQ

TA貢獻2039條經(jīng)驗 獲得超8個贊

偉大的工作安德里亞斯。我創(chuàng)建了一個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);

}


查看完整回答
反對 回復(fù) 2019-11-13
  • 3 回答
  • 0 關(guān)注
  • 718 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號