Struts 2只使用s:iterator在JSP上的mysql表中显示一行

时间:2016-08-04 15:28:42

标签: struts2

我在struts 2中遇到一个非常奇怪的问题,我使用s:iterator来提取问题列表,但是当我使用s:property标签时,只会显示ID,而不会显示任何其他内容。有4列,id,groupid,subgroupid和questiontxt但我似乎只能显示ID。我测试了列表,它包含了所有列,它已经从数据库中正确保存了它们,但我能在屏幕上显示的唯一内容就是ID。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>

<%@ taglib prefix="s" uri="/struts-tags" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>

<link href=<s:url value="resources/welcome.css" /> rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome</title>
</head>

    enter code here

<body>
    <table>
        <s:iterator value="listQuestionsBasic" var="question">
        <tr>        
        <td>
        <s:property value="#question.id" />
        </td>
        </tr>
        <tr>
        <td>
        <s:property value="#question.groupid" />
        </td>
        </tr>
        <tr>
        <td>
        <s:property value="#question.subgroupid" />
        </td>
        </tr>
        <tr>
        <td>
        <s:property value="#question.questiontxt" />
        </td>
        </tr>
        </s:iterator>
    </table>

        </body>
        </html>

1 个答案:

答案 0 :(得分:0)

所以我通过根据正确的java礼节重命名变量来解决它,IE questiontxt列为String questionTxt,而不是String questiontxt。

我需要一杯啤酒。