How to start and stop tomcat using java code?
|
You can execute native commands using java
|
|||||||||||
|
|
You need to execute You also need following things:
I also have p.s. it would also be nice if you could start accepting answers, your current rate is 0/28. |
|||
|
|
|
You can send the shutdown command to the shutdown port both of which are can be configured in the root element of server.xml file of Tomcat. By steps: Step 1 Configure the CATALINA_HOME/conf/server.xml as follow:
The attribute port is optional. If it is omitted, the default one, 8005, is used. The value for shutdown attribute can be anything. This should not be known by others. Step 2 Make the java program send the shutdown command, myShutDownCommand, using java.net.Socket class to the shutdown port, 8005.
|
|||
|
|