Spring에서 지원하는 ServletContextAware를 구현(implements)하면 거의 거져 먹여주는 꼴이다.

 

@Controller
public class TestController implements ServletContextAware{
	@Override
	public void setServletContext(ServletContext servletContext) {
		this.servletContext = servletContext;
	}
}

 

'프로그래밍 > Spring' 카테고리의 다른 글

Spring | collection & association  (0) 2020.12.24
Spring | AOP  (0) 2020.12.23
Spring - DI  (0) 2020.12.22

+ Recent posts