我正在尝试从数据库中获取数据并将其显示在网页上。
我期望表格包含实体数据,但请注意:
我接下来有一些课程:
系:
package entity;
import javax.persistence.*;
import java.io.Serializable;
@Entity
@Table(name = "DEPT")
@NamedQuery(name = "Department.getAll",
query = "select d from Department d")
public class Department implements Serializable {
@Id
@Column(name = "DEPTNO")
private int DEPTNO;
@Column(name = "DNAME")
private String dname;
@Column(name = "LOC")
private String loc;
public Department() {
}
public int getDEPTNO() {
return DEPTNO;
}
public void setDEPTNO(int DEPTNO) {
this.DEPTNO = DEPTNO;
}
public String getDname() {
return dname;
}
public void setDname(String dname) {
this.dname = dname;
}
public String getLoc() {
return loc;
}
public void setLoc(String loc) {
this.loc = loc;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Department that = (Department) o;
if (DEPTNO != that.DEPTNO) return false;
if (!dname.equals(that.dname)) return false;
return loc.equals(that.loc);
}
@Override
public int hashCode() {
int result = DEPTNO;
result = 31 * result + dname.hashCode();
result = 31 * result + loc.hashCode();
return result;
}
@Override
public String toString() {
return "Department{" +
"DEPTNO=" + DEPTNO +
", dname='" + dname + '\'' +
", loc='" + loc + '\'' +
'}';
}
}
DepartmentService:
public class DepartmentService {
public EntityManager entityManager = Persistence.createEntityManagerFactory("persistenceUnit").createEntityManager();
public List<Department> getAll(){
TypedQuery<Department> typedQuery = entityManager.createNamedQuery("Department.getAll", Department.class);
return typedQuery.getResultList();
}
}
ShowAllServlet:
@WebServlet(name = "ShowAllServlet", urlPatterns = "/showAll")
public class ShowAllServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
}
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
DepartmentService departmentService = new DepartmentService();
req.setAttribute("result", departmentService.getAll());
}
}
并且jsp index.jsp
<%@ page import="entity.Department" %>
<%@ page import="java.util.ArrayList" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<body>
<div class="main">
<jsp:include page="/showAll"></jsp:include>
<table id="mainTable">
<tr>
<th>DEPTNO</th>
<th>DNAME</th>
<th>LOC</th>
</tr>
<%--@elvariable id="result" type="java.util.List"--%>
<c:forEach items="${result}" var="obj">
<tr>
<td>
<c:out value="${obj.DEPTNO}"></c:out>
</td>
<td>
<c:out value="${obj.dname}"></c:out>
</td>
<td>
<c:out value="${obj.loc}"></c:out>
</td>
</tr>
</c:forEach>
</table>
</div>
</body>
</html>
我已经检查过,请求有属性“结果”。
答案 0 :(得分:0)
首先尝试从<c:out>
标记中获取变量,您不需要它们,其次需要进行更多导入:
<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@page import="java.lang.String"%>
<%@page import="javax.portlet.PortletSession"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
答案 1 :(得分:0)
看起来您使用的是JSP非常旧的版本。至于在servlet上使用注释,你应该至少使用应该在Web服务器上可用的Servlet 3.0库。
如果web.xml
检查头标记中的版本是否有正确的Servlet版本,那么该版本应该至少为2.4。如果您对使用它的原因有疑问,因为此版本及更高版本默认情况下使用isELIgnored="false"
启用EL。如果您要求在所有页面上忽略EL,则可以修改页面,但在该页面上使用EL除外。
<%@ page isELIgnored ="false" %>
如果您的Web应用程序提供了任何已实现servlet的库,但是较低版本则应删除它们。
如果您使用pom.xml
指定库的范围,则可在服务器上以provided
的形式提供。
使用可与Web应用程序的Servlet版本一起使用的JSTL版本。您可以使用Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core” answer。
下载JSTL