您好,登錄后才能下訂單哦!
這篇文章主要講解了“如何理解Hibernate Utilities”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“如何理解Hibernate Utilities”吧!
Hibernate還是比較常用的,于是我研究了一下Hibernate Utilities,在這里拿出來和大家分享一下,希望對(duì)大家有用。
Hibernate Utilities類
以下代碼其中包含了標(biāo)簽文件使用的所有函數(shù),最適合使用 Java 代碼編寫的代碼都被放到了幾個(gè) TLD 可以映射的函數(shù)中,這樣標(biāo)簽文件就可以使用它們了;這些函數(shù)都是在Hibernate Utilities 類中進(jìn)行編碼的。因此,我們需要三樣?xùn)|西:定義這些類的 TLD 文件、Hibernate Utilities 中的函數(shù),以及標(biāo)簽文件本身,后者要使用這些函數(shù)。(第四樣應(yīng)該是使用這個(gè)標(biāo)簽文件的 JSP 頁面。)
以下,給出了在 TLD 中引用的函數(shù)和另外一個(gè)表示給定屬性是否是 Date 的方法。在這個(gè)類中要涉及到比較多的代碼,但是本文限于篇幅,不會(huì)給出所有的代碼;不過需要注意 findGetterMethod() 除了將表達(dá)式語言(Expression Language,EL)方法表示(customer.contact)轉(zhuǎn)換成 Java 表示(customer.getContact())之外,還執(zhí)行了基本的映像操作。
Hibernate Utilities節(jié)選
public static Boolean required(Object object, String propertyPath) { Method getMethod = findGetterMethod(object, propertyPath); if (getMethod == null) { return null; } else { return getMethod.isAnnotationPresent(NotNull.class); } } public static Boolean isDate(Object object, String propertyPath) { return java.util.Date.class.equals(getReturnType(object, propertyPath)); } public static Class getReturnType(Object object, String propertyPath) { Method getMethod = findGetterMethod(object, propertyPath); if (getMethod == null) { return null; } else { return getMethod.getReturnType(); } }
此處可以清楚地看到在運(yùn)行時(shí)使用 Validation annotations 是多么容易??梢院唵蔚匾脤?duì)象的 getter 方法,并檢查這個(gè)方法是否有相關(guān)的給定的注釋 。
感謝各位的閱讀,以上就是“如何理解Hibernate Utilities”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)如何理解Hibernate Utilities這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。