サーブレットで JSONObject を作成し、そのオブジェクトを JSP に渡します。
JSONObject jo=new JSONObject();
jo.put("site","java4s.com");
jo.put("content","Java");
jo.put("TotalLinks",927);
HttpSession session=request.getSession(true);
session.setAttribute("jsonObject", jo);
RequestDispatcher rd = request.getRequestDispatcher("viewpage.jsp");
rd.forward(request, response);
そして、これは私のJSPページです
<%@page import="com.google.gson.JsonObject"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>View Json</title>
<%
JSONObject jsonObject=(JSONObject)session.getAttribute("jsonObject");
%>
</head>
<body>
<h6>JSON View</h6>
<br>
<%=jsonObject%>
</body>
</html>
ただし、 JSONObjectを型に解決できないというエラーを示す JSP ページ。しかし、jarファイルを追加しましたが、サーブレットではエラーが表示されません。私は何をすべきか?ありがとう