我做文档。在 pdf 中,我的对象应该看起来像 json。我创建了一个对象集合:
Arrays.asList(new CoefficientPerQuantityParameter(2, BigDecimal.valueOf(0.9)),
new CoefficientPerQuantityParameter(10, BigDecimal.valueOf(0.8)),
new CoefficientPerQuantityParameter(40, BigDecimal.valueOf(0.7))
)
CoefficientPerQuantityParameter 看起来像这样
public class CoefficientPerQuantityParameter {
private Integer hour;
private BigDecimal cost;
}
我在 xhtml 文件中接受它:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="style.css" rel="stylesheet" type="text/css"/>
<title>My document</title>
</head>
<body>
<div>
<p th:text="${coefficientPerQuantityParameter}"/>
</div>
</body>
</html>
我需要以 JSON 的形式查看结果。但我看到了完全不同的东西:
[CoefficientPerQuantityParameter
(hour=2, cost=0.9),
CoefficientPerQuantityParameter
(hour=10, cost=0.8),
CoefficientPerQuantityParameter
(hour=40, cost=0.7)]
如何得到它?
{"2": 0.9, "10": 0.8, "40": 0.7}
繁花不似锦
青春有我
相关分类