我试图从postgres数据库中的表中获取值并显示在JSP页面中。我使用JSTL来获取数据。表格的每个单元格中的值都很大,即一些xml内容,因此我试图将其放入表格单元格中的textarea中,即
<body>
<sql:setDataSource driver="org.postgresql.Driver"
url="jdbc:postgresql://x.x.x.x:5432/postgres" user="postgres" password="postgres"/>
<sql:query var="summary" sql="select * from req_resp_summary">
</sql:query>
<br><br><br><br>
<table class="hovertable" align="center">
<h3> Request and Response Summary</h3><br>
<tr>
<th><b>ID</b></th>
<th><b>Name</b></th>
<th><b>Reqest XML</b></th>
<th><b>Respnse XML</b></th>
<th><b>Request TimeStamp</b></th>
<th><b>Responded Time</b></th>
<th><b>Destination</b></th>
<th><b>Status</b></th>
</tr>
<c:forEach var="sum" items="${summary.rows}">
<tr onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';">
<c:set var="req_xml" value="${sum.request_xml}"/>
<c:set var="res_xml" value="${sum.response_xml}"/>
<%
String response_xml=(String)pageContext.getAttribute("res_xml");
String request_xml=(String)pageContext.getAttribute("req_xml");
%>
<td><c:out value="${sum.request_id}"/></td>
<td><c:out value="${sum.element_name}"/></td>
<!--<td width="20px" height="30px"><c:out value="${sum.request_xml}"/></td>-->
<td><html:textarea property="req_xml" value="<%= request_xml%>" readonly="true" rows="4"></html:textarea> </td>
<!--<td style="text-align: justify; "><c:out value="${sum.response_xml}"/></td>-->
<td><html:textarea property="req_xml" value="<%= request_xml%>" readonly="true" rows="4"></html:textarea> </td>
<td><c:out value="${sum.timestamp}"/></td>
<td><c:out value="${sum.respond_time}"/></td>
<td><c:out value="${sum.destination}"/></td>
<td><c:out value="${sum.status}"/></td>
</tr>
</c:forEach>
</table>
</body>
这存在于for-each循环中。问题是它只显示request_xml字符串而不显示response_xml字符串。它显示一个完整的html表行,其他是部分的,其余的不显示。 jsp页面中的第一行也包含响应字符串。
另一件事是,如果我只使用标签,则显示所有值,但我需要将字符串包含在textarea中。
任何帮助非常感谢。 感谢
答案 0 :(得分:0)
尝试使用HashMap收集您的String并将其用于您的textarea。
HashMap x = new HashMap();
HashMap y = new HashMap();
x.add(pageContext.getAttribute("res_xml"));
y.add(pageContext.getAttribute("req_xml"));