escist
escist

Reputation: 783

How do I create a Jetty Server in Eclipse Juno?

This is what I've done so far:

  1. From "Install New Software", I chose the site: "http://eclipse-jetty.sourceforge.net/update/"
  2. Installed "Eclipse Jetty Feature".
  3. Restarted Eclipse after the installation.

However, Jetty does not show up in the list of servers in the New Server wizard.

Any ideas what I'm doing wrong here? I'm a complete newbie to Java. I'm a C# programmer and I'm learning to use Eclipse and such. Sorry if I'm missing something obvious.

UPDATE 1

Screenshot of New Server > Download additional server adapters

Download additional server adapters

If I attempt to install the server adapter, I see this error message during the installation:

Installation Error

UPDATE 2

Screenshot of Installed software

Installed software*

Screenshot of New Server Wizard

Define a New Server window

Screenshot of Run Configurations
This is what my Run Configurations window lists:

Screenshot of Preferences > Run/Debug > Perspectives
Perspectives

Upvotes: 2

Views: 10109

Answers (1)

André Ricardo
André Ricardo

Reputation: 3172

Can you confirm Eclipse Jetty Feature is installed?

 Help -> Install New Software > what is already installed?

Eclipse Installation Details Then to run Jetty you can add it in the Run Configurations or Debug Configurations under Jetty Webapp

Debug Configurations Jetty Webapp

Quick tutorial (you don't need the "Run Jetty Run" plugin)

Upvotes: 2

Related Questions