web.xml은 많이 안쓰지만 ..그래도 누군가에게는 필요할수도 ..

 

 

<context-param>
  <param-name>foo</param-name>
  <param-value>bar</param-value>
</context-param>

 

다음과 같이 web.xml에 전역으로 등록한 파라미터는 

 

jsp에서

 

${initParam['foo']}

 

이렇게 꺼내서 쓰면 된다 

 

 

https://stackoverflow.com/questions/14039220/how-can-i-get-context-parameter-value-in-jsp

+ Recent posts