250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- myBatis
- Source
- STS
- 오픈소스
- Spring Boot
- Thymeleaf
- IntelliJ
- Docker
- PostgreSQL
- error
- Core Java
- MySQL
- ubuntu
- Eclipse
- maven
- JDBC
- oracle
- jpa
- SpringBoot
- Tomcat
- Open Source
- JavaScript
- MSSQL
- 설정
- 문서
- git
- spring
- Exception
- AJAX
- Python
Archives
- Today
- Total
헤르메스 LIFE
The method getServletContext() is undefined for the type HttpServletRequest 본문
Exception
The method getServletContext() is undefined for the type HttpServletRequest
헤르메스의날개 2015. 3. 24. 16:54728x90
간만에 JSP 프로그래밍..
The method getServletContext() is undefined for the type HttpServletRequest
30: if(item.getSize() > 0) {
31: String ext = item.getName().substring(item.getName().lastIndexOf(".")+1);
32: //파일 기본경로
33: String defaultPath = request.getServletContext().getRealPath("/");
34: //파일 기본경로 _ 상세경로
35: String path = defaultPath + "upload" + File.separator;
문제는 request.getServletContext() 인 듯 합니다.
친절하게 포스팅을 하신 분이 계시네요..
감사합니다. ( http://javaking75.blog.me/220072102739 )
이분의 말을 빌리자면..
원인은 HttpServletRequest의 getServletContext() 함수는 Servlet 3.0부터 지원되기 때문이다. 아래 표를 보시면 아시겠지만 Tomcat7부터 Servlet 3.0을 지원한다.
[출처] [오류] HttpServletRequest의 getServletContext() 메서드 사용 문제 [jsp/servlet/spring]|작성자 자바킹
참고로 JSP문서와 서블릿 파일에서 getServletContext() 메서드를 그냥 부르면 Tomcat6 과 Tomcat7에서 에러를 보지 않고 정상적으로 사용 가능 합니다. 여기서 호출한 getServletContext()메서드는 GenericServlet 클래스에 정의된 메서드입니다.
입니다.... ^^
'자바킹'님 감사합니다.
728x90
'Exception' 카테고리의 다른 글
[Wildfly] 배포중 오류 - WFLYSRV0153, WFLYUT0027, WFLYCTL0013 (0) | 2016.08.10 |
---|---|
ORA-12638: 신용 검색에 실패했습니다 (0) | 2015.10.20 |
Servlet.service() for servlet jsp threw exception java.lang.NullPointerException (0) | 2014.03.10 |
[Exception] javax.mail.AuthenticationFailedException (0) | 2014.03.04 |
[Oracle] ORA-01652:128(으)로 테이블 공간 TEMP에서 임시 세그먼트를 확장할 수 없습니다. (0) | 2014.02.18 |