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

Difference between revisions of "Jetty WTP Plugin/Jetty WTP External WebApp"

m
m
Line 4: Line 4:
  
  
Sometimes it can be useful to use a web application that you created by other means than Dynamic WEB Project (for example, by using Ant).  
+
Sometimes you want to use a web application that you created by other means than generating a Dynamic WEB Project (for example, by using Ant).  
  
 
For instance, the Jetty7 distribution provides a <tt>test.war</tt> which shows you the features of Jetty 7 (WebSocket..). Here we use this WAR without creating a Dynamlc Web Project to start it.  
 
For instance, the Jetty7 distribution provides a <tt>test.war</tt> which shows you the features of Jetty 7 (WebSocket..). Here we use this WAR without creating a Dynamlc Web Project to start it.  
 +
 +
{{note|The example that follows works only if the port for your web application is 8080.}}
  
 
<ol>
 
<ol>
Line 25: Line 27:
  
  
<li>Navigate to the Modules tab of your Jetty server, in this case Jetty v7.o Server Local Host.  
+
<li>Navigate to the Modules tab of your Jetty server, in this case ''Jetty v7.0 Server Local Host''.  
 
</li>
 
</li>
  
Line 42: Line 44:
  
  
<li> In the Document Base field, enter  '''D:\tmp\test'''
+
<li> In the Document base field, enter  '''D:\tmp\test'''
 
<li>For the Path, enter '''/test''' (this is the context path)
 
<li>For the Path, enter '''/test''' (this is the context path)
  
 
<li>Click '''OK'''.  
 
<li>Click '''OK'''.  
</li> The test module is now in the list.  
+
</li> The test module is now in the Web Modules list.  
  
  
Line 53: Line 55:
  
  
The page http://localhost:8080/test/  now shows you Jetty home test war :
+
The page <nowiki>http://localhost:8080/test/</nowiki> now shows you Jetty home test WAR:
  
 
[[Image:Jetty-wtp-external6.jpg]]
 
[[Image:Jetty-wtp-external6.jpg]]
  
{{note| http://localhost:8080/mywebapp/ is also available in the list of web applications. You can add or remove any dynamic Web project or external Web application.}}
+
{{note|The list of web applications also includes <nowiki>http://localhost:8080/mywebapp/</nowiki>. You can add or remove any dynamic Web project or external Web application.}}

Revision as of 17:42, 18 November 2010



Using an External Web Application

Sometimes you want to use a web application that you created by other means than generating a Dynamic WEB Project (for example, by using Ant).

For instance, the Jetty7 distribution provides a test.war which shows you the features of Jetty 7 (WebSocket..). Here we use this WAR without creating a Dynamlc Web Project to start it.

Note.png
The example that follows works only if the port for your web application is 8080.


  1. Copy test.war from D:\Servers\jetty-distribution-7.1.6.v20100715\webapps.

  2. Jetty-wtp-external1.jpg


  3. unzip test.war in D:\tmp :

  4. Jetty-wtp-external2.jpg


  5. Navigate to the Modules tab of your Jetty server, in this case Jetty v7.0 Server Local Host.

  6. Jetty-wtp-external3.jpg


  7. Click Add External Web Module.
  8. The Add Module dialog box opens.


    Jetty-wtp-external4.jpg


  9. In the Document base field, enter D:\tmp\test
  10. For the Path, enter /test (this is the context path)
  11. Click OK.
  12. The test module is now in the Web Modules list.


    Jetty-wtp-external5.jpg


    The page http://localhost:8080/test/ now shows you Jetty home test WAR:

    Jetty-wtp-external6.jpg

    Note.png
    The list of web applications also includes http://localhost:8080/mywebapp/. You can add or remove any dynamic Web project or external Web application.

Back to the top