如何將資料庫中json格式的列值對映到java物件的屬性中
前言
mysql5.7版本之後,列值的型別支援json格式,那麼如何將json格式的欄位型別的值對映到java物件當中呢?以下記錄一下轉換方法.
資料庫展示:
specs列為json格式,現將此列的值對映到java的物件的屬性當中
分析json串,需要建立一個VO物件,用於儲存json串中的物件
public class Spec implements Serializable {
private Integer key_id;
private String key;
private Integer value_id;
private String value;
}
建立Pojo物件
@Entity
@Table(name = "sku")
@Getter
@Setter
public class SkuEntity extends BaseEntity {
@Id
private int id;
private BigDecimal price;
private BigDecimal discountPrice;
private byte online;
private String img;
private String title;
private int spuId;
//private List<Spec>specs;
private String specs;
private String code;
private int stock;
private Integer categoryId;
private Integer rootCategoryId;
GenericAndJson工具類程式碼:
package com.my.sevencell.api.utils;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.my.sevencell.api.exception.http.ServerErrorException;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.io.IOException;
/**
* @Description: 此工具類進行json的序列化和反序列化
* @Author: my
* @CreateDate: 2020/3/5 22:08
* @UpdateUser:
* @UpdateDate: 2020/3/5 22:08
* @UpdateRemark: 修改內容
* @Version: 1.0
*/
@Component
@Slf4j
public class GenericAndJson {
private static ObjectMapper mapper;
/**
* 採用set方法自動注入
* @param mapper
*/
@Autowired
public void setMapper(ObjectMapper mapper) {
GenericAndJson.mapper = mapper;
}
public static<T> String objectToJson(T o){
try {
String jsonString = mapper.writeValueAsString(o);
return jsonString;
} catch (JsonProcessingException e) {
log.error(e.getMessage());
throw new ServerErrorException(9999);
}
}
public static<T> T jsonToObject(String json, TypeReference<T>typeReference){
try {
if (json.isEmpty()){
return null;
}
T t = mapper.readValue(json, typeReference);
return t;
} catch (IOException e) {
log.error(e.getMessage());
throw new ServerErrorException(9999);
}
}
}
方法一
1.我們將specs列的值當做String型別進行接收
private String specs;
2.編寫specs的get/set方法,透過GenericAndJson工具類進行序列化和煩序列化
public List<SpecVO> getSpecs() {
if(this.specs.isEmpty()){
return Collections.emptyList();
}
List<SpecVO> specs = GenericAndJson.jsonToObject(this.specs, new TypeReference<List<SpecVO>>() {
});
return specs;
}
public void setSpecs(List<SpecVO> specs) {
String json = GenericAndJson.objectToJson(specs);
this.specs = json;
}
測試結果:
{
"id": 1,
"price": 3999.00,
"discount_price": null,
"online": 1,
"img": "",
"title": "復古雙色沙發(藏青色)",
"spu_id": 1,
"specs": [
{
"key_id": 1,
"key": "顏色",
"value_id": 2,
"value": "藏青色"
},
{
"key_id": 7,
"key": "雙色沙發尺寸(非標)",
"value_id": 32,
"value": "1.5米 x 1米"
}
],
"code": "1$1-2#7-32",
"stock": 89,
"category_id": 35,
"root_category_id": null
}
方法二
1.新建工具類ConveterObjectAndJson,實現AttributeConverter介面
package com.my.sevencell.api.utils;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.my.sevencell.api.exception.http.ServerErrorException;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import javax.persistence.AttributeConverter;
import java.io.IOException;
/**
* @Description: 實現json的序列化和反序列化,只需要對需要轉換的
* 屬性打上@convet主機即可
* @Author: my
* @CreateDate: 2020/3/6 9:32
* @UpdateUser:
* @UpdateDate: 2020/3/6 9:32
* @UpdateRemark: 修改內容
* @Version: 1.0
*/
@Slf4j
public class ConveterObjectAndJson<T> implements AttributeConverter<T,String> {
@Autowired
private ObjectMapper objectMapper;
@Override
public String convertToDatabaseColumn(T t) {
try {
String jsonString = objectMapper.writeValueAsString(t);
return jsonString;
} catch (JsonProcessingException e) {
log.error(e.getMessage());
throw new ServerErrorException(9999);
}
}
@Override
public T convertToEntityAttribute(String s) {
try {
if(s.isEmpty()){
return null;
}
T t = objectMapper.readValue(s, new TypeReference<T>() {
});
return t;
} catch (IOException e) {
log.error(e.getMessage());
throw new ServerErrorException(9999);
}
}
}
2.我們將specs列的值當用List集合進行接收,並打上@Convert(converter = ConveterObjectAndJson.class)的註解
注意:
1.specs屬性的get/set方法可自動生成,無需進行任何改動.
2.用List<specVo>接收時,idea會報錯,不過不影響正常執行,可忽略
3.@Conver是avax.persistence包下的;
@Convert(converter = ConveterObjectAndJson.class)
private List<SpecVO> specs;
測試結果:
{
"id": 1,
"price": 3999.00,
"discount_price": null,
"online": 1,
"img": "",
"title": "復古雙色沙發(藏青色)",
"spu_id": 1,
"specs": [
{
"key": "顏色",
"value": "藏青色",
"key_id": 1,
"value_id": 2
},
{
"key": "雙色沙發尺寸(非標)",
"value": "1.5米 x 1米",
"key_id": 7,
"value_id": 32
}
],
"code": "1$1-2#7-32",
"stock": 89,
"category_id": 35,
"root_category_id": null
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4650/viewspace-2824994/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 合併陣列物件中相同的屬性值陣列物件
- C# ORM從物件到資料庫表的對映C#ORM物件資料庫
- Hibernate 對映xml中的屬性型別XML型別
- Js陣列物件的屬性值升序排序,並指定陣列中的某個物件移動到陣列的最前面JS陣列物件排序
- 如何高效地將SQL資料對映到NoSQL儲存系統中SQL
- javascript獲取物件直接量中的屬性和屬性值JavaScript物件
- HIBERNATE的對映---資料庫表中欄位和對應持久化類中屬性都是自定義型別的?資料庫持久化型別
- 使用 tpl 標籤和 for 讀取物件屬性值中的陣列物件陣列
- javascript 將變數值作為物件屬性 獲取物件對應的值JavaScript變數物件
- Javascript 解構賦值,將屬性/值從物件/陣列中取出,賦值給其他變數JavaScript賦值物件陣列變數
- EasyUI 中 DataGrid 控制元件 列 如何繫結物件中的屬性UI控制元件物件
- 獲取List集合物件中某一列屬性值物件
- css屬性與js中style物件的屬性對應表CSSJS物件
- js如何判斷物件的屬性值是物件還是陣列JS物件陣列
- node將js中的json物件生成到新的excel表中JSON物件Excel
- mybatis 同一張表的資料被對映到 一個結果物件例項 的 多個屬性物件 上MyBatis物件
- mysql json陣列內物件屬性 多個值搜尋MySqlJSON陣列物件
- 將json格式物件轉換成陣列物件JSON物件陣列
- Oracle資料庫中Constraint約束的四對屬性Oracle資料庫AI
- javascript 將一個陣列中的元素的值複製到另一個已有資料的陣列中JavaScript陣列
- JAVA獲取json中的全部鍵值對JavaJSON
- JAVA裡List集合中的物件根據物件的某個屬性值降序或者升序排序Java物件排序
- java8 對list集合中的物件遍歷,重新賦值兩種方法,遍歷某個屬性返回陣列Java物件賦值陣列
- 關於JS陣列中相同物件屬性值歸類方法的一點思考JS陣列物件
- vue中未定義的的物件屬性在頁面中繫結不到值Vue物件
- java高階用法之:在JNA中將本地方法對映到JAVA程式碼中Java
- 如何將外部資料庫 匯入到系統的SQL中資料庫SQL
- J2EE中幾種物件導向的資料庫對映訪問策略:物件資料庫
- package.json中的重要屬性PackageJSON
- 資料庫建表-表中列的性質資料庫
- js去掉json中重複的id 重新push新的物件屬性JSON物件
- js中物件的屬性可以列舉是什麼意思JS物件
- 達夢資料庫如何將Excel表的資料複製到表中資料庫Excel
- Json 格式化設定 將物件的屬性名稱改成小寫開頭的形式JSON物件
- 關於struts2 action中map型別屬性的對映型別
- 將多個JSON欄位對映到單個Java欄位JSONJava
- scss中如果將null作為屬性值會刪除此屬性CSSNull
- Java物件轉JSON時如何動態的增刪改查屬性Java物件JSON