MongoDB - 如何在jstl中声明对象变量

时间:2018-06-04 13:43:59

标签: spring-mvc jstl

我使用的是MongoDB,我的对象是这样的

{ 
    "id" : "1", 
    "Name" : "jack", 
    "Date" : "22-03-2018", 
    "Time" : "123412", 
    "tmax_volumes" : {
        "type1" : "392.7cm", 
        "type2" : "83.1cm", 
        "type3" : "24.1cm", 
        "type4" : "15.6cm"
    }
}

现在想在我的tmax_volumes页面中打印jstl

在我使用${COLL.tmax_volumes}这个变量的jstl页面中我得到了tmax_volumes个对象,如下所示

    { 
     "type1" : "392.7cm" , 
     "type2" : "83.1cm" , 
     "type3" : "24.1cm" , 
     "type4" : "15.6cm"
   }

现在我需要使用Key values

进行pring
392.7cm
83.1cm
24.1cm
15.6cm

由于

1 个答案:

答案 0 :(得分:0)

在我的模型中,我映射tmax_volume对象

private Map<String,String> tmax_volumes;

我的jstl页面,我已经分配如下

<p>${COLL.tmax_volumes.type1}</p>
<p>${COLL.tmax_volumes.type2}</p>
<p>${COLL.tmax_volumes.type3}</p>
<p>${COLL.tmax_volumes.type4}</p>