| Author |
Startup class for Application server
|
Mila
Ranch Hand
Joined: Feb 14, 2002
Posts: 31
|
|
Hello, What is the best way to implement a startup class to Application servers'? I mean something like Weblogic's T3StartupDef. Br MikLa
|
 |
Chris Mathews
Ranch Hand
Joined: Jul 18, 2001
Posts: 2712
|
|
|
This is vendor-specific. However, to be as portable as possible it is best to place your logic in a class separate from your startup class. Then your vendor-specific startup class can act as a facade. Thus when you need to support multiple vendors it should be a simple process to write another facade for each specific application server.
|
 |
Pradeep bhatt
Ranch Hand
Joined: Feb 27, 2002
Posts: 8876
|
|
|
How about ServletContextListener ?
|
Groovy
|
 |
Chris Mathews
Ranch Hand
Joined: Jul 18, 2001
Posts: 2712
|
|
That would be making the assumption that the application is using Servlets. Many J2EE Applications have the need for startup events and are not using Servlets. In these cases you are at the mercy of the Application Servers feature set.
|
 |
 |
|
|
subject: Startup class for Application server
|
|
|