1 Star 0 Fork 0

fanzipeng31/springboot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MoneySerializer.java 787 Bytes
一键复制 编辑 原始数据 按行查看 历史
fanzipeng31 提交于 2022-03-22 00:48 . one
package com.sptpc.demo.support;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import org.joda.money.Money;
import org.springframework.boot.jackson.JsonComponent;
import java.io.IOException;
/**
* 告诉jackson
* money -> json
*/
@JsonComponent
public class MoneySerializer extends StdSerializer<Money> {
protected MoneySerializer() {
super(Money.class);
}
@Override
public void serialize(Money money, JsonGenerator jsonGenerator,
SerializerProvider serializerProvider) throws IOException {
// 只返回价格
jsonGenerator.writeNumber(money.getAmount());
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/fan-zipeng/springboot.git
[email protected]:fan-zipeng/springboot.git
fan-zipeng
springboot
springboot
master

搜索帮助