如何使用JSTL解析JSON?

时间:2018-03-01 02:44:24

标签: json jsp jstl

我必须使用jsonObject

在列表中解析c:foreach
<c:forEach var="lecture" items="${lectureList}">
  // .. the place where i should parse jsonObject ${lecture.lastjson}
</c:forEach>

下面是讲座对象

public class Lecture {

String lid;
String lname;
String lastjson;  // json object(String writer, String title...)  }

我已经尝试过这样的

<c:out value="${lecture.lastjson.writer}"/>

但它不起作用.. 我可以用来处理这个问题的任何提示吗?

0 个答案:

没有答案