JSP JSTL和其他指令不被识别
在经历了许多以前回答的帖子之后,我仍然无法找到我面临的问题的解决方案。 在我的JSP中,没有任何指令正在工作。 我主要关注如何使用<%@ taglib prefix =“c”uri =“http://java.sun.com/jsp/jstl/core”%>来工作。
我也检查了include指令和<%@ page contentType =“text / html; charset = UTF-8”%>。 JSP指出了所有这些指令的错误。 我添加了以下依赖项到我的pom.xml文件jstl jstl 1.2另外,将jstl1.2,taglibs-standard-impl-1.2.5 jar文件下载到我的WEB-INF / lib文件夹中,但似乎没有任何效果。
我的web.xml开始于:
< ?xml version="1.0" encoding="UTF-8"?> < 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">
我还需要检查哪些地方以便我可以使用JSTL核心taglib?
错误被指示:
Multiple annotations found at this line: - Invalid text string (<%@ page contentType="text/html; charset=UTF-8" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> ). - Invalid character used in text string (<%@ page contentType="text/html; charset=UTF-8" %> <%@ taglib prefix="c" uri="http://java.sun.com/ jsp/jstl/core"%> ).
提前致谢,
链接地址: http://www.djcxy.com/p/74687.html