일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- maven
- ubuntu
- JDBC
- spring
- Thymeleaf
- myBatis
- Python
- Tomcat
- MSSQL
- Eclipse
- Exception
- 설정
- Spring Boot
- 오픈소스
- AJAX
- Open Source
- MySQL
- jpa
- SpringBoot
- Core Java
- oracle
- Source
- 문서
- PostgreSQL
- git
- Docker
- IntelliJ
- JavaScript
- STS
- error
- Today
- Total
헤르메스 LIFE
[JSTL] According to TLD or attribute directive in tag file, attribute test does not accept any expressions 본문
[JSTL] According to TLD or attribute directive in tag file, attribute test does not accept any expressions
헤르메스의날개 2012. 6. 29. 16:38원문 : http://levin01.tistory.com/1426
According to TLD or attribute directive in tag file, attribute test does not accept any expressions
위의 에러가 발생했을 때 확인해야 할 부분
1. JSP 1.2 에서 JSTL 1.0 를 사용할 경우
- . rtexprvalue를 false 로 해야함
-. tld 위치 -->http://java.sun.com/jstl
<%@ taglib uri='http://java.sun.com/jstl/core' prefix='c'%>
-. web.xml 에서 servlet 2.3 DTD 사용
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
2. JSP 2.0 에서 JSTL 1.1 를 사용할 경우
- . rtexprvalue를 true 로 해야함
-. tld 위치 --> http://java.sun.com/jsp/jstl
<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
-. web.xml 에서 servlet 2.4 DTD 사용
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2eehttp://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
'JSP&JavaScript&HTML' 카테고리의 다른 글
[JavaScript] function을 클래스처럼 사용하기 (0) | 2014.03.14 |
---|---|
[Tree] dTree의 활용 ( JavaScript Tree ) (0) | 2013.11.27 |
[Source] Connection Test (0) | 2012.05.14 |
Common URL Escape Characters (0) | 2012.04.04 |
자바스크립트의 여러형태의 함수를 클래스 처럼 사용하기 (0) | 2011.11.25 |