↧
Make Jetty as Windows Service
Normally, we can start Jetty in the command prompt by java -jar <Jetty_Home>/start.jar In case you close the command prompt accidentally, Jetty will shutdown. One way to solve the problem in...
View ArticleJetty – Stop a Jetty Server by Command
To start a Jetty Server, you can type the following command. java -jar start.jar The only way to stop the Jetty Server is by pressing Ctrl + C in the shell prompt. Actually, there is a way to issue a...
View ArticleMaven – Start Jetty Server by Ant task using maven-antrun-plugin
I have the following shell script to start the Jetty Server in my portable web application in Windows. start_jetty.bat start java -DSTOP.PORT=8080 -DSTOP.KEY=stop_jetty -jar start.jar EXIT It will...
View Article