Front/JavaScript

[JSP 오류] The JSP specification requires that an attribute name is preceded by whitespace

헹창 2020. 2. 21.
반응형

[JSP 오류]  The JSP specification requires that an attribute name is preceded by whitespace

 

오류 로그

 

심각: Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: /WEB-INF/jsp/road/management.jsp (line: 1, column: 84) 
The JSP specification requires that an attribute name is preceded by whitespace

 

 

 

Jsp 페이지 헤더에 다음 코드처럼 UTF-8"과 pageEncoding 띄어쓰기를 하지 않았을 때의 오류이다.

 

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

 

 

해결 방법

 

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

 

 

 

728x90
반응형

댓글

추천 글