如何保持可从属性文件或数据库配置jsonproperty值

时间:2019-05-03 13:55:14

标签: json configurable

我有一个json文件,其代码如下:-

@JsonIgnoreProperties(ignoreUnknown=true)
@JsonInclude(Include.NON_NULL)
public class PointDetail {

@JsonProperty("PointA")
protected String pointsForA;

@JsonProperty("PointB")
protected String pointsForB;
}

PointDetail对象被传递到Frontend,并且PointA和PointB在网页上显示为标题。每当需要显示一些不同的标题时,都会在代码中进行更改。

有什么方法可以避免这种情况,并保持“ PointA”和“ PointB”的可配置性,以便我们即时进行更改。

请提出建议。

谢谢

0 个答案:

没有答案