servletContext - 다른 서블릿에서도 공유되는 내용.

servletConfig - 그 서블릿에서만 사용되는 내용


servletConfig 예제
<servlet> 
        <servlet-name>Hello</servlet-name> 
        <servlet-class>aaa.Aservlet</servlet-class> 
        <init-param> 
                <param-name>hello</param-name> 
                <param-value>Good</param-value> 
       </init-param>
</servlet> 
사용시 - String a=getInitParameter("hello"); 

 

 

servletContext 예제

 

    <context-param>

       <param-name>location</param-name>

       <param-value>/WEB-INF/A.txt</param-value>

    </context-param>

 

사용시 -

ServletContext context = getServletContext()    

String location = context.getInitParameter("location"); 

 
 
setAttrubute(), getAttribute()

'Jsp_Html' 카테고리의 다른 글

[Jsp] html, input, key, event 처리  (0) 2010.06.22
[Jsp] forward, location.href  (0) 2010.06.22
[Jsp] 한글 깨짐 현상 대처  (0) 2010.06.15
[Jsp] 다중 국가 언어 설정  (0) 2010.06.15
[Jsp] 패턴으로 필요한 문자 골라내기  (0) 2010.06.15

+ Recent posts