Start the Catalina daemon. @throws Exception Fatal start error
()
| 337 | * @throws Exception Fatal start error |
| 338 | */ |
| 339 | public void start() throws Exception { |
| 340 | if (catalinaDaemon == null) { |
| 341 | init(); |
| 342 | } |
| 343 | |
| 344 | Method method = catalinaDaemon.getClass().getMethod("start", (Class<?>[]) null); |
| 345 | method.invoke(catalinaDaemon, (Object[]) null); |
| 346 | } |
| 347 | |
| 348 | |
| 349 | /** |