1. 程式人生 > >Java中遍歷實體類(處理MongoDB)

Java中遍歷實體類(處理MongoDB)

boot common ech set declare code mod exc reflect

在實際過程中,經常要將實體類進行封裝,尤其是處理數據庫的過程中;因此,對於遍歷實體類能夠與數據庫中的一行數據對應起來。

我是使用的環境是Spring boot,訪問的數據庫時MongoDB

實體類遍歷:

1 //java中遍歷實體類,獲取屬性名和屬性值
2         public static void testReflect(Object model) throws Exception{
3             for (Field field : model.getClass().getDeclaredFields()) {
4                 field.setAccessible(true
); 5 System.out.println(field.getName() + ":" + field.get(model) ); 6 } 7 }

pom.xml需要配依賴

<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>

<version>1.9.3</version>
</dependency>

我項目中的代碼:

 1     public String reflectData(DianpingShopEntity entry) throws Exception{
 2         StringBuilder stringBuilder = new StringBuilder();
 3         for (Field field : entry.getClass().getDeclaredFields()) {
 4             field.setAccessible(true);
 5             stringBuilder.append(field.get(entry)).append(‘,‘);
6 } 7 return stringBuilder.deleteCharAt(stringBuilder.length()-1).toString(); 8 } 9 10 public String reflectTitle(DianpingShopEntity entry) throws Exception{ 11 StringBuilder stringBuilder = new StringBuilder(); 12 for (Field field : entry.getClass().getDeclaredFields()) { 13 field.setAccessible(true); 14 stringBuilder.append(field.getName()).append(‘,‘); 15 } 16 return stringBuilder.deleteCharAt(stringBuilder.length()-1).toString(); 17 }

Java中遍歷實體類(處理MongoDB)