日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

实现ORM框架映射

發布時間:2024/4/13 编程问答 19 豆豆
生活随笔 收集整理的這篇文章主要介紹了 实现ORM框架映射 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package com.learn;import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target;/*** * @classDesc: 功能描述:(自定義表映射注解 )*/ @Target(value = { ElementType.TYPE }) @Retention(RetentionPolicy.RUNTIME) public @interface SetTable {/*** * @methodDesc: 功能描述:(對應數據庫表名稱)*/String value();} package com.learn;import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy;/*** * @classDesc: 功能描述:(定義字段屬性)* */ @Retention(RetentionPolicy.RUNTIME) public @interface SetProperty {/*** * @methodDesc: 功能描述:(字段名稱)*/String name();/*** * @methodDesc: 功能描述:(長度)*/int len();} package com.learn;@SetTable("user_table") public class UserEntity {@SetProperty(name = "user_name", len = 10)private String userName;@SetProperty(name = "user_age", len = 10)private Integer userAge;public String getUserName() {return userName;}public void setUserName(String userName) {this.userName = userName;}public Integer getUserAge() {return userAge;}public void setUserAge(Integer userAge) {this.userAge = userAge;}} package com.learn;import java.lang.reflect.Field;public class Test001 {public static void main(String[] args) throws ClassNotFoundException {// 反射Class<?> forName = Class.forName("com.learn.UserEntity");Field[] declaredFields = forName.getDeclaredFields();// 拼接sql語句StringBuffer sqlBuffer = new StringBuffer();sqlBuffer.append(" select ");for (int i = 0; i < declaredFields.length; i++) {// 獲取注解屬性SetProperty setProperty = declaredFields[i].getAnnotation(SetProperty.class);String property = setProperty.name();sqlBuffer.append(property);if (i == declaredFields.length - 1) {sqlBuffer.append(" from ");} else {sqlBuffer.append(" , ");}}// 獲取某個注解對象SetTable setTable = forName.getAnnotation(SetTable.class);// 表的名稱String tableName = setTable.value();sqlBuffer.append(" " + tableName);// 生成orm框架sql語句System.out.println(sqlBuffer.toString());}}

?

總結

以上是生活随笔為你收集整理的实现ORM框架映射的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。