Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jetty server for Windows

Tags:

Can the Jetty server run on Windows-based environments. If there is a Windows installable, can someone please point me to it?

like image 312
Amit Avatar asked Oct 06 '09 03:10

Amit


People also ask

How do I start a Jetty server on Windows?

Start Jetty standalone from the JAR file. To start Jetty, switch on the command line to the installation directory and issue the following command. To stop Jetty press Ctrl + C . To start Jetty as Windows service you can use Apache Procrun.

What is Jetty server used for?

Jetty provides a web server and servlet container, additionally providing support for HTTP/2, WebSocket, OSGi, JMX, JNDI, JAAS and many other integrations. These components are open source and are freely available for commercial use and distribution.

How do I setup a Jetty server?

Jetty allows one or more override deployment descriptors, in web. xml format, to be set on a context (via code or IoC XML) to amend the configuration set by the default and standard web. xml . The normal Jetty Java API may be called by code or IoC XML to amend the configuration of a web application.

How do I run a Jetty server in Eclipse?

Running the Web ApplicationSelect the application you want to run on Jetty. Click on the Run button -> Run Configurations. Configure your app on Jetty as shown in the picture bellow and click on Run: Wait for the server to start.


1 Answers

I found a good tutorial and the quick start documentation on the installation of Jetty in a windows environment. It's not simply an installer, but you merely unzip the files into a folder and run the command:

java -jar start.jar

in the folder where you unzipped it to start the server.

like image 152
Simon David Pratt Avatar answered Oct 24 '22 09:10

Simon David Pratt