2014-10-03 12 views
0

jsp 페이지를 구현하는 데 큰 문제가 있습니다.새 클래스 경로로 JSTL을 구현할 수 없습니다.

이론적으로 JSTL 1.2 + Servlet 3.0 with STS (Eclipse Luna) - Tomcat 7. I saw the article posted here에서 스프링 4를 사용하고 있지만 해결할 수 없습니다.

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

이 URL은 STS IDE (Eclipse)에서 인식합니다.

/views/root/index.jsp(1,63) PWC6188: 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

SRC/메인/웹 애플리케이션/WEB-INF/web.xml을

<?xml version="1.0" encoding="UTF-8"?> 
<flow xmlns="http://www.springframework.org/schema/webflow" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://www.springframework.org/schema/webflow 
     http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"> 

    <view-state id="start"> 
    </view-state> 

</flow> 

SRC/메인/웹 애플리케이션/WEB-INF/lib에 : 나는 페이지를 열려고 할 때 오류를 표시합니다

  • javax.servlet.jsp.jstl-1.2.1.jar
  • javax.servlet.jsp.jstl-API-1.2.1.jar
012 3,516,

다른 접근 방식을 시도 :

<%@ taglib prefix="c" uri="http://xmlns.jcp.org/jsp/jstl/core" %> 

이 URL은 이클립스 IDE를 인식하지 못합니다. 프로젝트의 오류를 비난합니다.

<html xmlns="http://www.w3.org/1999/xhtml" 
     xmlns:c="http://java.sun.com/jsp/jstl/core"> 

pom.xml (maven)을 삽입 한 일부 라이브러리는 해당 행의 URL을 인식하지만 브라우저에서는 아무 것도 발생하지 않습니다.

PS : 4 개의 프로젝트에서 Spring은 더 이상 "web.xml"파일이 필요없고 따라하기 위해 자습서를 넣으려고한다고 말하면서 다시 한번 일식 오류라고 비난합니다.

답변