jackson實現java對象轉支付寶/微信模板消息

一、支付寶消息模板大致長這樣

{"to_user_id": "","telephone": "xxxxx","template": {"template_id": "xxxxxx","context": {"head_color": "#85be53","url": "www.baidu.com","action_name": "查看詳情","keyword1": {"color": "#85be53","value": "15700000000"},"keyword2": {"color": "#85be53","value": "2017年06月"},"keyword3": {"color": "#85be53","value": "99.99"},"keyword4": {"color": "#85be53","value": "66.66"},"first": {"color": "#85be53","value": "您好,本月賬單已出"},"remark": {"color": "#85be53","value": "謝謝使用。"}}}
}

二、java pojo

Item實體?TemplateMessageItem.java

public class TemplateMessageItem {private String value;private String color;public TemplateMessageItem(String value, String color) {this.value = value;this.color = color;}public TemplateMessageItem(String value) {this.value = value;this.color = "#113d83";}public String getValue() {return this.value;}public void setValue(String value) {this.value = value;}public String getColor() {return this.color;}public void setColor(String color) {this.color = color;}
}

最外層:TemplateMessage .java

import com.fasterxml.jackson.annotation.JsonProperty;import java.util.ArrayList;
import java.util.List;
import java.util.Objects;/*** @author hujunzheng* @create 2018-07-11 20:47**/
public class TemplateMessage {@JsonProperty("to_user_id")private String toUserId = "";private String telephone = "";private NestTemplate template = new NestTemplate();public String getToUserId() {return toUserId;}public void setToUserId(String toUserId) {this.toUserId = toUserId;}public String getTelephone() {return telephone;}public void setTelephone(String telephone) {this.telephone = telephone;}public NestTemplate getTemplate() {return template;}public void setTemplate(NestTemplate template) {this.template = template;}public TemplateMessage withToUserId(String toUserId) {this.toUserId = toUserId;return this;}public TemplateMessage withTelephone(String telephone) {this.telephone = telephone;return this;}public TemplateMessage withTemplateId(String templateId) {this.template.setTemplateId(templateId);return this;}public TemplateMessage withContextHeadColor(String color) {this.template.getContext().setHeadColor(color);return this;}public TemplateMessage withContextUrl(String url) {this.template.getContext().setUrl(url);return this;}public TemplateMessage withContextActionName(String actionName) {this.getTemplate().getContext().setActionName(actionName);return this;}public TemplateMessage withContextFirst(TemplateMessageItem first) {this.getTemplate().getContext().setFirst(first);return this;}public TemplateMessage withContextRemark(TemplateMessageItem remark) {this.getTemplate().getContext().setRemark(remark);return this;}public TemplateMessage addContextKeyword(TemplateMessageItem keyword) {List<TemplateMessageItem> keywords = this.getTemplate().getContext().getKeywords();if (Objects.isNull(keyword)) {keywords = new ArrayList<>();this.getTemplate().getContext().setKeywords(keywords);}keywords.add(keyword);return this;}
}

第一個嵌套層:NestTemplate.java

import com.fasterxml.jackson.annotation.JsonProperty;public class NestTemplate {@JsonProperty("template_id")private String templateId;private NestContext context = new NestContext();public String getTemplateId() {return templateId;}public void setTemplateId(String templateId) {this.templateId = templateId;}public NestContext getContext() {return context;}public void setContext(NestContext context) {this.context = context;}
}

第二個嵌套層:NestContext.java

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;import java.util.List;public class NestContext {@JsonProperty("head_color")private String headColor = "#85be53";private String url;@JsonProperty("action_name")private String actionName;private TemplateMessageItem first;private TemplateMessageItem remark;@JsonProperty("keyword1")@JsonInclude(JsonInclude.Include.NON_NULL)@JsonSerialize(using = TemplateMessageItemsSerializer.class)private List<TemplateMessageItem> keywords;public String getHeadColor() {return headColor;}public void setHeadColor(String headColor) {this.headColor = headColor;}public String getUrl() {return url;}public void setUrl(String url) {this.url = url;}public String getActionName() {return actionName;}public void setActionName(String actionName) {this.actionName = actionName;}public TemplateMessageItem getFirst() {return first;}public void setFirst(TemplateMessageItem first) {this.first = first;}public TemplateMessageItem getRemark() {return remark;}public void setRemark(TemplateMessageItem remark) {this.remark = remark;}public List<TemplateMessageItem> getKeywords() {return keywords;}public void setKeywords(List<TemplateMessageItem> keywords) {this.keywords = keywords;}public static void main(String[] args) throws JsonProcessingException {NestContext context = new NestContext();context.setFirst(new TemplateMessageItem("first"));context.setRemark(new TemplateMessageItem("remark"));context.setUrl("www.baidu.com");context.setActionName("查看詳情");
//        List<TemplateMessageItem> keywords = new ArrayList<>();
//        keywords.add(new TemplateMessageItem("充值金額"));
//        keywords.add(new TemplateMessageItem("手機號"));
//        context.setKeywords(keywords);System.out.println(new ObjectMapper().writeValueAsString(context));}
}

main方法中有注釋:
{
????"url":"www.baidu.com",
????"first":{
????????"value":"first",
????????"color":"#113d83"
????},
????"remark":{
????????"value":"remark",
????????"color":"#113d83"
????},
????"head_color":"#85be53",
????"action_name":"查看詳情"
}

main方法中無注釋
{
????"url":"www.baidu.com",
????"first":{
????????"value":"first",
????????"color":"#113d83"
????},
????"remark":{
????????"value":"remark",
????????"color":"#113d83"
????},
????"head_color":"#85be53",
????"action_name":"查看詳情",
????"keyword1":{
????????"value":"充值金額",
????????"color":"#113d83"
????},
????"keyword2":{
????????"value":"手機號",
????????"color":"#113d83"
????}
}

三、自定義字段序列化

  將一個List中的每個對象輸出為多個并列json key=value的形式,當然要靠JsonSerializer啦!

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import org.springframework.util.CollectionUtils;import java.io.IOException;
import java.util.List;/*** @author hujunzheng* @create 2018-07-11 21:30**/
public class TemplateMessageItemsSerializer extends JsonSerializer<List<TemplateMessageItem>> {@Overridepublic void serialize(List<TemplateMessageItem> items, JsonGenerator gen, SerializerProvider serializers) throws IOException, JsonProcessingException {if (CollectionUtils.isEmpty(items)) {return;}gen.writeObject(items.get(0));for (int i = 1; i < items.size(); ++i) {gen.writeFieldName("keyword" + (i + 1));gen.writeObject(items.get(i));}}
}

?

轉載于:https://www.cnblogs.com/hujunzheng/p/9301806.html

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/531225.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/531225.shtml
英文地址,請注明出處:http://en.pswp.cn/news/531225.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

簡單封裝kafka相關的api

一、針對于kafka版本 <dependency><groupId>org.apache.kafka</groupId><artifactId>kafka-clients</artifactId><version>0.8.2.2</version></dependency><dependency><groupId>org.apache.kafka</groupId>…

springmvc controller動態設置content-type

springmvc RequestMappingHandlerAdapter#invokeHandlerMethod 通過ServletInvocableHandlerMethod#invokeAndHandle調用目標方法&#xff0c;并處理返回值。 如果return value &#xff01; null&#xff0c;則通過returnvalueHandlers處理&#xff0c;內部會調用MessageConv…

springboot2.0 redis EnableCaching的配置和使用

一、前言 關于EnableCaching最簡單使用&#xff0c;個人感覺只需提供一個CacheManager的一個實例就好了。springboot為我們提供了cache相關的自動配置。引入cache模塊&#xff0c;如下。 二、maven依賴 <dependency><groupId>org.springframework.boot</groupId…

依賴配置中心實現注有@ConfigurationProperties的bean相關屬性刷新

配置中心是什么 配置中心&#xff0c;通過keyvalue的形式存儲環境變量。配置中心的屬性做了修改&#xff0c;項目中可以通過配置中心的依賴&#xff08;sdk&#xff09;立即感知到。需要做的就是如何在屬性發生變化時&#xff0c;改變帶有ConfigurationProperties的bean的相關屬…

java接口簽名(Signature)實現方案

預祝大家國慶節快樂&#xff0c;趕快迎接美麗而快樂的假期吧&#xff01;&#xff01;&#xff01; 前言 在為第三方系統提供接口的時候&#xff0c;肯定要考慮接口數據的安全問題&#xff0c;比如數據是否被篡改&#xff0c;數據是否已經過時&#xff0c;數據是否可以重復提交…

Git rebase命令實戰

一、前言 一句話&#xff0c;git rebase 可以幫助項目中的提交歷史干凈整潔&#xff01;&#xff01;&#xff01; 二、避免合并出現分叉現象 git merge操作 1、新建一個 develop 分支 2、在develop分支上新建兩個文件 3、然后分別執行 add、commit、push 4、接著切換到master分…

HttpServletRequestWrapper使用技巧(自定義session和緩存InputStream)

一、前言 javax.servlet.http.HttpServletRequestWrapper 是一個開發者可以繼承的類&#xff0c;我們可以重寫相應的方法來實現session的自定義以及緩存InputStream&#xff0c;在程序中可以多次獲取request body的內容。 二、自定義seesion import javax.servlet.http.*;publi…

spring注解工具類AnnotatedElementUtils和AnnotationUtils

一、前言 spring為開發人員提供了兩個搜索注解的工具類&#xff0c;分別是AnnotatedElementUtils和AnnotationUtils。在使用的時候&#xff0c;總是傻傻分不清&#xff0c;什么情況下使用哪一個。于是我做了如下的整理和總結。 二、AnnotationUtils官方解釋 功能 用于處理注解&…

windows系統nexus3安裝和配置

一、前言 為什么要在本地開發機器上安裝nexus&#xff1f;首先聲明公司內部是有自己的nexus倉庫&#xff0c;但是對上傳jar包做了限制&#xff0c;不能暢快的上傳自己測試包依賴。于是就自己在本地搭建了一個nexus私服&#xff0c;即可以使用公司nexus私服倉庫中的依賴&#xf…

Springmvc借助SimpleUrlHandlerMapping實現接口開關功能

一、接口開關功能 1、可配置化&#xff0c;依賴配置中心 2、接口訪問權限可控 3、springmvc不會掃描到&#xff0c;即不會直接的將接口暴露出去 二、接口開關使用場景 和業務沒什么關系&#xff0c;主要方便查詢系統中的一些狀態信息。比如系統的配置信息&#xff0c;中間件的狀…

log4j平穩升級到log4j2

一、前言 公司中的項目雖然已經用了很多的新技術了&#xff0c;但是日志的底層框架還是log4j&#xff0c;個人還是不喜歡用這個的。最近項目再生產環境上由于log4j引起了一場血案&#xff0c;于是決定升級到log4j2。 二、現象 雖然生產環境有多個結點分散高并發帶來的壓力&…

Springboot集成ES啟動報錯

報錯內容 None of the configured nodes are available elasticsearch.yml配置 cluster.name: ftest node.name: node-72 node.master: true node.data: true network.host: 112.122.245.212 http.port: 39200 transport.tcp.port: 39300 discovery.zen.ping.unicast.hosts: [&…

高效使用hibernate-validator校驗框架

一、前言 高效、合理的使用hibernate-validator校驗框架可以提高程序的可讀性&#xff0c;以及減少不必要的代碼邏輯。接下來會介紹一下常用一些使用方式。 二、常用注解說明 限制說明Null限制只能為nullNotNull限制必須不為nullAssertFalse限制必須為falseAssertTrue限制必須為…

kafka-manager配置和使用

kafka-manager配置 最主要配置就是用于kafka管理器狀態的zookeeper主機。這可以在conf目錄中的application.conf文件中找到。 kafka-manager.zkhosts"my.zookeeper.host.com:2181" 當然也可以聲明為zookeeper集群。 kafka-manager.zkhosts"my.zookeeper.host.co…

kafka告警簡單方案

一、前言 為什么要設計kafka告警方案&#xff1f;現成的監控項目百度一下一大堆&#xff0c;KafkaOffsetMonitor、KafkaManager、 Burrow等&#xff0c;具體參考&#xff1a;kafka的消息擠壓監控。由于本小組的項目使用的kafka集群并沒有被公司的kafka-manager管理&#xff0c;…

RedisCacheManager設置Value序列化器技巧

CacheManager基本配置 請參考博文&#xff1a;springboot2.0 redis EnableCaching的配置和使用 RedisCacheManager構造函數 /*** Construct a {link RedisCacheManager}.* * param redisOperations*/ SuppressWarnings("rawtypes") public RedisCacheManager(RedisOp…

Nginx配置以及域名轉發

工程中的nginx配置 #user nobody; worker_processes 24; error_log /home/xxx/opt/nginx/logs/error.log; pid /home/xxx/opt/nginx/run/nginx.pid;events {use epoll;worker_connections 102400; }http {include /home/xxx/opt/nginx/conf.d/mime.types;default_…

java接口簽名(Signature)實現方案續

一、前言 由于之前寫過的一片文章 &#xff08;java接口簽名(Signature)實現方案 &#xff09;收獲了很多好評&#xff0c;此次來說一下另一種簡單粗暴的簽名方案。相對于之前的簽名方案&#xff0c;對body、paramenter、path variable的獲取都做了簡化的處理。也就是說這種方式…

支付寶敏感信息解密

支付寶官方解密文檔&#xff1a;https://docs.alipay.com/mini/introduce/aes String response "小程序前端提交的";//1. 獲取驗簽和解密所需要的參數 Map<String, String> openapiResult JSON.parseObject(response,new TypeReference<Map<String, St…

HashMap 源碼閱讀

前言 之前讀過一些類的源碼&#xff0c;近來發現都忘了&#xff0c;再讀一遍整理記錄一下。這次讀的是 JDK 11 的代碼&#xff0c;貼上來的源碼會去掉大部分的注釋, 也會加上一些自己的理解。 Map 接口 這里提一下 Map 接口與1.8相比 Map接口又新增了幾個方法&#xff1a;   …