개인적인 정리

The JSP specification requires that an attribute....... 본문

전자정부표준프레임워크/Exception 및 Error

The JSP specification requires that an attribute.......

yeon.Biju 2018. 8. 17. 13:58

이클립스 상에서 아래와 같은 오류가 발생하였다.

 

The JSP specification requires that an attribute name is preceded by whitespace

 

 

 

원인이 뭘까 한참 고민하다가....whitespace 라는 말을 보고 아래와 같이 수정하였더니 잘 된다.

 

 

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

 

 

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

 

 

 

 

pageEncoding 앞에 공백 한칸이 없어서 생김 

Comments