| Author |
JSP init parameters.
|
Philip Kurian
Greenhorn
Joined: Jan 17, 2007
Posts: 14
|
|
Hi, I've been trying to init parameters to my jsp file by modifying web.xml and by overriding the jspInit() method. Unfortunately tomcat seems to be playing up in that it only recognises the 2nd init parameter. See code: web.xml The output is as follows: The value of the first parameter is null The value of the second parameter is 2nd When I try to examine the init parameters in tomcats log files all I get are the following: fork xpoweredBy second The parameter first is missing. Does anyone have any ideas on how I can declare more than one init parameter?
|
 |
Christophe Verré
Sheriff
Joined: Nov 24, 2005
Posts: 14672
|
|
init-param accepts only one value. replace by
|
[My Blog]
All roads lead to JavaRanch
|
 |
Philip Kurian
Greenhorn
Joined: Jan 17, 2007
Posts: 14
|
|
|
thanks mate. that's really helpful.
|
 |
Niranjan Deshpande
Ranch Hand
Joined: Oct 16, 2005
Posts: 1277
|
|
|
that was a good catch !!
|
SCJP 1.4 - 95% [ My Story ] - SCWCD 1.4 - 91% [ My Story ]
Performance is a compulsion, not a option, if my existence is to be justified.
|
 |
 |
|
|
subject: JSP init parameters.
|
|
|