반응형
[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
반응형
'Front > JavaScript' 카테고리의 다른 글
[JavaScript] 자바스크립트 빈 객체 확인하는 방법 (0) | 2020.06.20 |
---|---|
[JavaScript] addEventListener callback Function이 즉시 실행된다 ? (0) | 2020.02.25 |
[Native JS] jQuery 없이 순수 자바스크립트로 클래스 제어하기 (classList) (0) | 2020.02.17 |
[JavaScript] Closure 클로저 응용하기(Feat. Naver Map Api 마커 이벤트 리스너 등록) (1) | 2020.01.08 |
[Error] 이클립스 JavaScript "Invalid Regular Expression Options" 빨간 줄 없애기 (2) | 2019.12.30 |
댓글