import javax.servlet.ServletConfig;
import javax.servlet.http.HttpServlet;

 

public class CLASSNAME extends HttpServlet{

 

     public void init(ServletConfig config) throws ServletException {

          super.init(config);

     }

 

     public FUNCTION(){

          javax.servlet.ServletContext  servletContext  = getServletContext();

     }

}

 

ServletContext를 사용하기 위해선 init 메소드에서 super.init(config)를 해줘야한다.

(이유는 잘 모르겠다. 그에 답은 :http://okjsp.pe.kr/seq/40698)

 

ServletContext 객체를 얻을 수 있는 메서드는 HttpServlet 클래스의 getServletContext()이다.

(엄청 해깔린다. 이런식으로 ServletContext 의 servletContext 를 파라미터로 보내서 사용하면 좋을듯 싶다.

+ Recent posts