JSP使用Tomcat连接到MS SQL数据库的示例

时间:2012-08-24 08:32:33

标签: jsp datasource java-ee-5

我正在尝试使用jsp检索数据,但它显示了  错误:org.apache.jasper.JasperException:在第13行处理JSP页面/databaseTest.jsp时发生异常

我的代码是:

<%@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>

1 个答案:

答案 0 :(得分:0)

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

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