Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Jetty/HowTo/Using Jetty with IntelliJ

< Jetty
Revision as of 17:37, 27 April 2011 by Jesse.mcconnell.gmail.com (Talk | contribs) (New page: {{Jetty Howto | introduction = Jetty can be used in a variety of ways when developing in IntelliJ. }} == Embedded Usage == Another often used mechanism for developing in intellij is th...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



Introduction

Jetty can be used in a variety of ways when developing in IntelliJ.


Embedded Usage

Another often used mechanism for developing in intellij is the embedded approach. This strategy involves writing a small main method that starts up jetty and deploys your servlets programmatically and you can control the starting and stopping of your webapp through normal runtime measures.

Testing Usage

A very popular approach to developing in intellij and one that we employ heavily in jetty is the usage of jetty with junit or the like where in @Before and @After there is a starting and stopping of a jetty server. If your interested in this approach look through the unit tests for things like jetty-server and jetty-client for a wealth of examples. Also the embedded-examples project as a number of simple examples for very common usage scenarios.

Back to the top