| Author |
Servelet instances created in web.xml
|
Sheethal Shenoy
Greenhorn
Joined: Nov 19, 2003
Posts: 3
|
|
Hello, I have <servlet> <servlet-name>notify</servlet-name> <servlet-class>org.diabetes.phd.PHDNotify</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>notify</servlet-name> <url-pattern>notify.phd</url-pattern> </servlet-mapping> in my web.xml in weblogic 7.0 .But on startup i get 2 instances on the servlet.Irrespective of <load-on-startup> is 0 or 1 i get 2 instances on the servlet.Could anyone explain this behaviour.I would appreciate any help Thanks Sheets
|
Sheethal
|
 |
Nitish Bahadur
Ranch Hand
Joined: Aug 25, 2003
Posts: 118
|
|
|
Is it implementing SingleThreadModel?
|
 |
Wasim Ayoubi
Ranch Hand
Joined: Nov 21, 2004
Posts: 46
|
|
Hi there load on startup does have nothing to do with the number of servlet instances created by the container. as told before, check if your servlet code implements the SingleThreadModel interface.
|
Wasim Ayoubi<br />SCJA1.0(BETA), SCJP1.4, SCWCD1.4<br />Next ???
|
 |
 |
|
|
subject: Servelet instances created in web.xml
|
|
|