第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

休眠在調(diào)用查詢時(shí)引發(fā)空點(diǎn)異常。.

休眠在調(diào)用查詢時(shí)引發(fā)空點(diǎn)異常。.

紫衣仙女 2022-09-22 16:15:29
我正在嘗試通過使用休眠運(yùn)行查詢來(lái)從數(shù)據(jù)庫(kù)中獲取一些數(shù)據(jù)。然后,數(shù)據(jù)將存儲(chǔ)在使用查詢.list 方法的列表中。問題是我在運(yùn)行 query.list 方法時(shí)收到一個(gè)空點(diǎn)例外,我認(rèn)為這是因?yàn)椴樵儾环祷厝魏斡糜诹谐龅臄?shù)據(jù)。這是產(chǎn)生出口的方法public static void getDataForMonth(int yearCount ,int monthCount){        try {            session.beginTransaction();            LocalDate date = LocalDate.of(yearCount, monthCount, 1);            Query query = session.createQuery("select t from Task t where month(t.date) = month(:date)  and year(t.date) = year(:date)");            query.setParameter("date", dtf.format(date));            taskList = query.list();            session.getTransaction().commit();            } finally {            session.close();        }    }我有一堆類似的方法,它們的工作原理相同,但具有不同的查詢,它們工作得很好。例如:public static void getDataByDescriptionAndDate(String description, String date) {        try {            session.beginTransaction();            Query query = session.createQuery("select c.id, c.description, c.completion, c.date from Task c where c.description = :desc and c.date = :dt");            query.setParameter("desc", description).setParameter("dt", date);            taskList = query.list();            session.getTransaction().commit();        } finally {            Main.getFactory().getCurrentSession().close();        }    }我嘗試過以String格式傳遞日期參數(shù),但出現(xiàn)同樣的問題,我也嘗試了MySQL工作臺(tái)中的查詢,它工作得很好,所以我真的很困惑為什么它在程序中不起作用。我堅(jiān)持使用這個(gè)查詢,因?yàn)樗俏野l(fā)現(xiàn)的唯一一個(gè)會(huì)根據(jù)從日期參數(shù)收集的月份和年份返回?cái)?shù)據(jù)的查詢,如果有人知道一個(gè)查詢也會(huì)返回我需要的數(shù)據(jù),請(qǐng)告訴我。
查看完整描述

1 回答

?
富國(guó)滬深

TA貢獻(xiàn)1790條經(jīng)驗(yàn) 獲得超9個(gè)贊

問題解決了。顯然,最新版本的hibernate不支持 month()和yor()函數(shù),因此我將不得不從從數(shù)據(jù)庫(kù)中獲取的所有數(shù)據(jù)列表中選擇java中所需的數(shù)據(jù),或者使用不同的查詢。


查看完整回答
反對(duì) 回復(fù) 2022-09-22
  • 1 回答
  • 0 關(guān)注
  • 123 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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