1. web.xml 파일에 초기화 파라미터(Initialization Parameter) 기술
2. 초기화 파라미터를 web.xml이 아닌 Servlet파일에 직접 기술
1. web.xml에 servlet-mapping 한 곳 중 <servlet> 태그 안에다가 기술한다.
1 2 3 4 | <init-param> <param-name></param-name> <param-value></param-value> </init-param> | cs |
2. Servlet파일에서 ServletConfig 클래스를 이용해서 접근하여 데이터를 불러옵니다.
1 2 3 4 5 6 7 8 9 10 11 12 | protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub String admin = getInitParameter("admin"); String pw = getInitParameter("pw"); String sp_path = getInitParameter("path"); System.out.println("admin_id : " + admin); System.out.println("password : " + pw); System.out.println("special_path : " + sp_path); } | cs |
2. 초기화 파라미터를 web.xml이 아닌 Servlet파일에 직접 기술
웹어플리케이션의 생명주기 감시(ServletContextListener) (0) | 2018.10.17 |
---|---|
Servlet 데이터 공유 (ServletContext) (0) | 2018.10.17 |
Form 전송으로 Servlet 값 받는 법 (0) | 2018.10.17 |
한글깨짐현상 처리 (JSP/Servlet) (0) | 2018.10.17 |
서블릿 매핑 방법 (0) | 2018.10.16 |
댓글 영역