0

我正在尝试使用 jsp 检索数据,但它显示 Error:org.apache.jasper.JasperException: An exception occurred processing JSP page /databaseTest.jsp at line 13

我的代码是:

<%@taglib  uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@page import="java.io.*,java.util.*,java.sql.*" %>
<%@page import="javax.servlet.http.*,javax.servlet.*" %>
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSTL sql:query Tag</title>
</head>
<body>
   <sql:setDataSource var="ds" driver="com.mysql.jdbc.Driver"
 url="jdbc:mysql://localhost/JSPTUTORIAL"
 user="root"  password="root"/>
    <sql:query dataSource="${ds}" var="result">
        SELECT * FROM Employees;
    </sql:query>
    <h4>Employee Table</h4>
    <table border="1" width="100%">
        <tr>
            <th>Employee ID</th>
            <th>First Name</th>
            <th>Last Name</th>
            <th>Age</th>
        </tr>
        <c:forEach var="row" items="${result.rows}"/>
            <tr>
                <td><c:out value="${row.id}"/></td>
                <td><c:out value="${row.first}"/></td>
                <td><c:out value="${row.last}"/></td>
                <td><c:out value="${row.age}"/></td>
            </tr>
    </table>
</body>

4

1 回答 1

0

语法代码是正确的。我在IDE中过去并检查。也许这段代码和 /databaseTest.jsp 不匹配。请检查一下。

我建议不要在实际项目中使用标签。例如,在 Spring 中,您可以创建 bean 并使用依赖注入设置所有数据(登录名、密码等)。

于 2015-01-07T15:41:31.577 回答