Hibernate,Oracle視圖中欄位小數點位元使用注意

來源:互聯網
上載者:User

SELECT count(expscore) as count,sum(expscore) as sum,max(expscore) as max,min(expscore) as min,round

(avg(EXPSCORE)*1000)/1000 as avg,a.EXPACTID,b.teachercode,b.expname,c.classid,a.scoresubmit,a.scoreverify,c.schoolid

FROM expscore a,EXPACTIVATED b,schoolmajorclass c

where a.expactid=b.expactid and b.schclassid=c.schclassid

GROUP BY a.EXPACTID, b.teachercode, b.expname, c.classid, a.scoresubmit, a.scoreverify,c.schoolid

這是一段視圖建立的SQL語句,省略了建視圖語句。

當使用Hibernate的Reverse Engineering 來自動產生Hibernate的對應檔時,會產生兩個class檔案,因為視圖並沒有主鍵,其中一個class檔案是另一個的Id,而如果要使用小數點,並控制小數點的位元,我使用的方法是這樣的:

1,在建立試圖時round(avg(EXPSCORE)*1000)/1000 as avg用來控制小數點的位元;

2,在產生的***.hbm.xml檔案中修改屬性,例如

<key-property name="avg" type="java.lang.Long">

<column name="AVG" precision="22" scale="0" />

</key-property>

修改為:

<key-property name="avg" type="java.lang.Double">

<column name="AVG" precision="22" scale="3" />

</key-property>

3,修改主鍵id的class檔案,將自動產生聲明為Long的變數,改成Double型。

4,同時不要忘了在Hibernate.cfg.xml中添加這個新的*.hbm.xml設定檔。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.