2017. 9. 21. 04:09
Spring MVC Controller에서 ServletContext 사용하기 Java/Servlet2017. 9. 21. 04:09
1 2 | @Autowired ServletContext context; | cs |
또는
1 2 3 4 5 | private ServletContext context; public void setServletContext(ServletContext servletContext) { this.context = servletContext; } | cs |
'Java > Servlet' 카테고리의 다른 글
mybatis Exception varbinary은(는) text과(와) 호환되지 않습니다 (0) | 2020.11.30 |
---|---|
web.xml 에러 페이지 설정 (1) | 2018.07.25 |
Log4j 설정파일 위치 지정하기 (0) | 2014.03.14 |
JSTL loop (0) | 2014.03.14 |
Servlet Filter에서 Spring Bean 사용 (1) | 2014.03.14 |