在我的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>
提前致谢...我们将非常感谢您的帮助......
答案 0 :(得分:1)
如果您的Hibernate持久对象使用注释,您可以read the annotations关闭域对象。
或者,看看this question on getting SQL column names的答案是否有用。