我使用自定义ObjectMapper将类映射到Json序列化的字符串&反序列化
module.addDeserializer(MonthUtil.class, new MonthUtilDeserializer());
module.addSerializer(MonthUtil.class, new MonthUtilSerializer());
REST API使用的另一个类包含MonthUtil
类型的字段和getter。在Swagger定义中,该字段获取类MonthUtil
,尽管序列化对象包含字符串。
如何对类进行注释,或者如果需要字段或getter来告诉swagger这实际上是一个字符串?
我尝试将@ApiParam(type = "string")
添加到字段和getter中,但这没有帮助。
我更愿意将该类注释为由字符串表示。