您好,登錄后才能下訂單哦!
這篇文章主要介紹Javabean如何轉換成json字符并首字母大寫,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
今天寫接口的時候有個需求將接口返回的json字符串首字母大寫:{"SN":"","Result":""}格式,
只需要在返回bean里面屬性上加上@JsonProperty注解就可以了
import com.fasterxml.jackson.annotation.JsonProperty; public class DiagResponeBean { @JsonProperty( "SN") private String sn;//設備sn @JsonProperty( "result") private String result;//響應診斷結果 @JsonProperty( "Region") private String region;//管理域 @JsonProperty( "Status") private String status;//設備狀態 //setter/getter } //controller 接口部分代碼 com.fasterxml.jackson.databind.ObjectMapper ob =new com.fasterxml.jackson.databind.ObjectMapper(); //json轉bean時忽略大小寫 ob.configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true); if(StringUtil.isEmpty(json)){ diagResponeBean.setSn(""); diagResponeBean.setResult("入參不能為空"); diagResponeBean.setRegion(""); diagResponeBean.setStatus(""); ob.writeValue(response.getOutputStream(), diagResponeBean); return; }
以上是“Javabean如何轉換成json字符并首字母大寫”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。