2

在我的 JSP 页面中,我在数据库中显示员工详细信息并以硬编码的形式给出表列名称。现在我需要知道如何动态获取表列名称?

我知道 ResultSetMetaData 仅在 JSP 中使用它。但是我不知道在 JSP 中使用 Spring-Hibernate Integration 时如何获取列名。

请任何人帮助解决这个问题?

我的 JSP 页面将是,

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

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

<form:form action="displayuser.html"  commandName="displayuser">  


<table width="100%" align="center">

 <tr style="background-color:#6B8E23  ;">
  <td align="center">Employee Id</td>
  <td align="center">Employee Name</td>
  <td align="center">Employee Password</td>
    <td align="center">Gender</td>
  <td align="center">Designation</td>
 </tr>

 <core:forEach items="${DisplayuserDetail}" var="userObj">
    <tr style="background-color:#9ACD32 ;">
       <td align="center"><core:out value="${userObj.empId}"/></td>
       <td align="center"><core:out value="${userObj.empName}"/></td>
       <td align="center"><core:out value="${userObj.empPassword}"/></td>
       <td align="center"><core:out value="${userObj.gender}"/></td>
       <td align="center"><core:out value="${userObj.designation}"/></td>
    </tr>
 </core:forEach>

</table>

</form:form>

</body>
</html>

在此先感谢...您的帮助将不胜感激...

4

1 回答 1

1

如果您的 Hibernate 持久对象使用注释,您可以从域对象中读取注释。

或者,看看这个关于获取 SQL 列名的问题的答案是否有帮助。

于 2013-01-23T13:34:00.207 回答