mysql - http ://java. sun.com/jsp/jSTL/core 无法在 web.xml 或随此应用程序部署的 jar 文件中解析

标签 mysql eclipse jsp tomcat jstl

我是 jsp web 开发的新手,为了能够读取数据库而调试我的应用程序时出现以下错误:

The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

关于这个问题,我在多个网站上研究了互联网很长时间,但无法解决任何问题。这些是我的规范:

集成开发环境: eclipse / JSP版本:2.0/ Servlet 版本:2.4/ JSTL版本:1.1.1/ Tomcat版本:7.0.35/

这是我的 WEB-INF/web.xml 文件

<?xml version="1.0" encoding="UTF-8" ?>
  <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd"
version="2.4">  
  <resource-ref>
    <description>Resource configuration for database connection</description>
    <res-ref-name>jdbc/TestDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
  </resource-ref>
 </web-app>

这是我的 META-INF/context.xml 文件

<?xml version="1.0" encoding="UTF-8" ?>
<Context>
<Resource name="jdbc/TestDB" auth="Container" type="javax.sql.DataSource"
           maxActive="100" maxIdle="30" maxWait="10000"
           username="admin" password="admin" driverClassName="com.mysql.jdbc.Driver"
           url="jdbc:mysql://localhost:3306/checklist_pdnf"/>

 </Context>

这是我的jsp文件

<?xml version="1.0" encoding="UTF-8" ?>

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>

<sql:query var="db" dataSource="jdbs/TestDB">
select * from patient
</sql:query>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>    
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    </head>
<body>  
<div>
         <table>
    <c:forEach var="row" items="${db.rows}">    
            <tr>
            <td>row.getString("patient_medicalRecordNumber")</td>
            <td>row.getString("patient_lastName")</td>
            <td>row.getString("patient_firstName")</td>
            <td>row.getString("patient_middleName")</td>
            <td>row.getString("patient_dateOfBirth")</td>
            <td>row.getString("patient_gender")</td>
            <td>row.getString("patient_admissionDateTime")</td>
            <td>row.getString("patient_dischargeDateTime")</td>
            <td>row.getString("patient_attendingPhysician")</td>
            <td>row.getString("patient_locationRoom")</td>
        </tr>
    </c:forEach>    
     </table>
   </div> 
 </body>
</html>

最佳答案

原来我的 JSP 版本实际上是 2.2,我记得在 Eclipse 中打开了一个关于页面以获取此信息,但无法重新找到它以进行回答。但是,如有必要,我会相应地更新此答案。

使用的库:

(1)javax.servlet.jsp.jSTL-1.2.1.jar

(2) javax.servlet.jsp.jSTL-api-1.2.1.jar

(3) javax.servlet-api-3.0.1.jar

(4) mysql-connector-java-5.1.23-bin.jar

pom.xml 引用自 http://java.net/projects/jsp/sources/svn/content/trunk/impl/pom.xml?rev=1440

依赖的版本是:

a) javax.servlet-api 3.1。 (b) javax.el-api 2.2.1。 (c) javax.servlet.jsp-api 1.2.1 (d) javax.servlet.jsp.jSTL-api 1.2.1。 (e) jSTL 1.2。 (f) jSTL-imp 1.2。

web.xml 中的引用:

`<web-app  
  xmlns="http://java.sun.com/xml/ns/javaee" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> `

关于mysql - http ://java. sun.com/jsp/jSTL/core 无法在 web.xml 或随此应用程序部署的 jar 文件中解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14902875/

相关文章:

mysql - phpmyadmin 和我的 Mac 的速度

php - 动态隐藏 HTML 表格的一部分

java - Tomcat 找到欢迎文件但无法找到其他 JSP

javascript - 在数据库中获取多个复选框结果(JSP PAGE)

mysql - 整合 Sonata 中的 fosUserBundle 表格

mysql - 按查询分组仅返回最新结果 - Codeigniter

c - Eclipse 无法运行我的 Makefile

java - eclipse运行配置中的"A configuration with this name already exists"错误

eclipse - 如何清理 Eclipse 安装?

java - 如何修复 Servlet 的无限重定向?