jstl의 $문 그대로 출력 => 해결 방법 web.xml에서 다음과 같이 수정
web.xml
AS-IS
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
TO-BE
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
'java' 카테고리의 다른 글
자바 다운로드 및 설치 (0) | 2017.11.11 |
---|---|
Spring 3.2 SqlMapClientTemplate class Deprecated. (0) | 2013.07.01 |
commons-lang vs commons-lang3 (0) | 2013.06.29 |
facet이란? (0) | 2013.06.29 |
메이븐 웹프로젝트 만들기 (0) | 2013.06.29 |