Hi, I am caught up with one doubt. Can we provide Initialization parameters for JSPs as we do for servlets in web.xml file. If so, how can we do that? Thanks, Uday Kiran
Moorthi Ramasamy
Greenhorn
Joined: Jan 02, 2004
Posts: 15
posted
0
Originally posted by Uday Kiran: Hi, I am caught up with one doubt. Can we provide Initialization parameters for JSPs as we do for servlets in web.xml file. If so, how can we do that?
<!ELEMENT servlet (icon?, servlet-name, display-name?, description?,servlet-class|jsp-file), init-param*, load-on-startup?, run-as?, security-role-ref*)> If you notice the servlet element in web.xml, it takes servlet-class or jsp-file. Placing a jsp instead of servlet-class will help you to pass init params to your JSP. Thanks, Moorthi
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.