Tagged Questions
The embedded-jetty tag has no wiki summary.
11
votes
3answers
2k views
Jetty: To embed or not to embed?
What are the benefits of embedding jetty vs deploying your webapp(s) in jetty? If you are planning on deploying more than one web app, should you strictly stick with deploying a war file for each web ...
7
votes
1answer
548 views
Specifying the Jetty port in SBT 0.10
I need to run the embedded Jetty on port different to the default 8080, using SBT 0.10
The question was answered here for SBT 0.7 - In which file do I need to add an override for the jetty port when ...
7
votes
4answers
1k views
How to deploy a Scala project from Eclipse?
I have a Scala project in Eclipse that I need to package up so I can deploy it to a server. It's based on Jetty but it runs as a standalone application. It contains Scala classes, Java classes and a ...
5
votes
1answer
333 views
Jetty: servlets vs handlers
I am trying to understand Jetty;
Tell me please:
1) When is it better to use Servlets and when Handlers?
2) Can i use Connectors with Servlets for "thread-per-request model"?
Thank you!!!
5
votes
2answers
2k views
Shortest code to start embedded Jetty server
I'm writing some example code where an embedded Jetty server is started. The server must load exactly one servlet, send all requests to the servlet and listen on localhost:80
My code so far:
static ...
4
votes
4answers
4k views
Configuring Jetty JSP support in embedded mode in Maven project
I can visit .html pages with Jetty, but when I visit a .jsp page I get:
0 13:21:13 / [INFO] No JSP support.
Check that JSP jars are in lib/jsp and
that the JSP option has been specified
to ...
4
votes
1answer
902 views
How to embed Jetty into Spring and make it use the same AppContext it was embedded into?
I have a Spring ApplicationContext where I declare Jetty server bean and start it. Inside Jetty I have a DispatcherServlet and a couple of controllers. How to make that DispatcherServlet and its ...
4
votes
2answers
860 views
Google AppEngine + Local JUnit Tests + Jersey framework + Embedded Jetty
I use Google Appengine for Java (GAE/J).
On top, I use the Jersey REST-framework.
Now i want to run local JUnit tests. The test
sets up the local GAE development environment ( ...
3
votes
1answer
18 views
Embedded Jetty: Different ports for internally- and externally-visible endpoints?
I've got a REST app that uses embedded Jetty as the server. Most of the endpoints need to be publicly-visible (and have appropriate authentication built in), but a few are for internal-use only. I'd ...
3
votes
1answer
220 views
error embedding a war into a jetty
I tried this example of an embedding war into a jetty.
When I debug on eclipse everything its ok and the webservices is deployed fine in port 8080, but when I make a jar with this program and put into ...
3
votes
3answers
568 views
Java Servlet Deployment - To Embed or Not - Tomcat/Jetty
I have several webapps deployed to production. I have used Tomcat as my servlet engine for ~10 years now. I'm considering moving to embedding Jetty model from the deploy-a-war-into-Tomcat model.
...
3
votes
2answers
1k views
Add resources to Jetty programmatically
I have a main class that configures and fires up Jetty. (That's standard practice from Wicket for testing a webapp, but it's really not wicket-specific.)
final Server server = new Server();
//skipped ...
3
votes
2answers
725 views
Servlet 3.0 support in embedded Jetty 8.0
For my unit-tests I use a simple test-server based on Jetty:
package eu.kostia.textanalysis.webservices.jetty;
import java.awt.Desktop;
import java.net.URI;
import org.eclipse.jetty.server.Server;
...
3
votes
1answer
635 views
is possible to combine: jersey + jetty + spring
I'm trying to create a webserver embedding jetty (rather than J2E) , and map my servlets RESTfully, using jersey.
I'm using spring for dependency injection, and mapping the servlets as beans
However, ...
3
votes
1answer
675 views
Where do I put my jetty.xml file with Jetty embedded?
I am just getting started with Jetty (Jetty 6 w/ Java 6). Using the example files with Jetty 6, I place my xml configuration file. in the same directory as my java file. But when I run the project I ...
3
votes
4answers
6k views
cannot load JSTL taglib within embedded Jetty server
I am writing a web application that runs within an embedded Jetty instance.
When I attempt to execute a JSTL statement, I receive the following exception:
org.apache.jasper.JasperException: ...
3
votes
2answers
2k views
Embedded Jetty and SOAP
I am trying to run an embedded Jetty and would like to expose a soap webservice. The project is loaded as a WAR generated by netbeans. The webservice is generated from a WSDL. What is the simplest way ...
3
votes
1answer
3k views
Where does GWT's Hosted Mode Jetty Run From?
I'm trying to call a web service in my back end java code when it's
running in hosted mode. Everything loads fine, the GWT RPC call works
and I can see it on the server, then as soon as it tries to ...
3
votes
4answers
2k views
Embedded Jetty looking for files inside its Jar file
Hey people, it's my first question here.
I successfully embedded Jetty on a test application. It can serve files without issues.
Now I want to know if it's possible for Jetty to serve files that are ...
3
votes
2answers
193 views
Detecting when an embedded Jetty server is fully initialized
I have embedded Jetty in a java application and am calling the start() method on an instance of the Jetty server object (after setting a handler list which describes the location of the static and ...
2
votes
2answers
91 views
How to use setThreadPool() in Jetty
I wanted to see how to use the setThreadPool() functionality. Let's say my main class is the following:
import javax.servlet.SingleThreadModel;
import org.eclipse.jetty.server.Server;
public class ...
2
votes
1answer
142 views
multiple instances of embedded jetty
I run an embedded jetty from eclipse using maven build configuration (jetty:run). The server starts properly:
2011-07-07 13:48:11.915:INFO::Started SelectChannelConnector@0.0.0.0:8080 STARTING
...
2
votes
1answer
435 views
How to set up SSL on an embedded Jetty?
I've got jetty 7.x embedded. Basically just creating a SelectChannelConnector to listen on port 80 and WebAppContext to deploy a single WAR directory.
I need to add SSL now (all the keystore stuff is ...
2
votes
1answer
441 views
Authenticating with Jetty through GWT button
I'm trying to create a login page using SmartGWT and have been trying to get Form Authentication to work with the Jetty server embedded with the GWT plug-in for Eclipse. I have a page that takes a ...
2
votes
0answers
382 views
CruiseControl: Does not start - how to determine reason?
CruiseControl does not start any more (only known change was adding new memory to the machine.)
Ok, it seems to start: Calling the web gui brings:
HTTP ERROR: 404
NOT_FOUND
RequestURI=/
...
2
votes
3answers
873 views
Cleanest Jetty Configuration for Development?
EDIT: I think I should clarify my intent...
I'm trying to simplify the development iteration cycle of write-code >> build WAR >> deploy >> refresh >> repeat. I'd like to be relatively independent of ...
2
votes
1answer
155 views
Spring framework best practices: deploying a non-bean compliant component
I want to build an MVC app using Spring (first timer here).
As such I want to embed Jetty as the servlet engine. Jetty however doesn't stricly follow the java beans pattern, so I can't launch some ...
2
votes
2answers
2k views
Missing JSP support in Jetty, or confusing log message?
Launching jetty by calling the API in 6.1.24.
The JSP 2.1 component is on the classpath.
org.mortbay.jetty:jsp-2.1-jetty:jar:6.1.24:compile
But the log says:
2010-08-19 08:16:19.443:INFO::NO JSP ...
2
votes
5answers
567 views
Is it possible to create Desktop Application using Java backend & Web Technologies UI
I would like to create a desktop application in Java & web technologies. The main reason for selecting Java is that it is free, open source, and hence our investment would be minimal and we would ...
2
votes
1answer
657 views
How to initialize a web app?
My Web App will be deployed as a WAR package in a Jetty instance. It needs to perform a lot of caching before serving requests. How do I call the caching method before anything else? is the a static ...
2
votes
2answers
541 views
How can i deliver jetty with many webapps via jnlp?
i have a webapp (http://sourceforge.net/projects/sf-mvn-plugins/files/m2-repo/net/sf/maven/plugins/example-captaincasa-jnlp/0.1-SNAPSHOT/example-captaincasa-jnlp-0.1-SNAPSHOT.war/download) wich use ...
2
votes
3answers
4k views
What jetty jar should I use?
I'd like to create an application using the embedded version of Jetty. Unfortunately, I can't find any information on what jar files I would need to do that. There are several in the maven ...
2
votes
2answers
3k views
Publish JAX-WS endpoint with embedded Jetty 7
Can anybody help with this?
I want to use an embedded Jetty 7 as Endpoint. This is what I tried:
public class MiniTestJetty {
@WebService(targetNamespace = "http")
public static class Calculator {
...
1
vote
1answer
85 views
How to start Lift in embedded Jetty?
I have a server, which shall serve some web content as a part of it's duties. It was working using embedded Jetty, and I want to add some Lift's beauty to it (templates, actors, etc).
The problem is ...
1
vote
0answers
63 views
Embedded Jetty WebAppContext FilePermission issue
I need to limit file permissions for "plug-in" WAR files containing servlets in an embedded Jetty. To test the file permissions, I created a WAR containing this servlet that tries to write to a file ...
1
vote
0answers
47 views
Using jetty plus in equinox jetty bundle
We are trying to get JAAS working in our RAP application. We run jetty through the equinox jetty bundle and configure it with a fragment which contains a jettycustomizer class.
Now we want to use ...
1
vote
1answer
97 views
RESTEasy UnavailableException HttpServletDispatcher
I searched and tried for hours to solve this problem, unfortunately without success.
I am using Java 1.6, RESTEasy 2.2.1.GA and a Jetty Embedded Server to setup a webservice.
Originally I copied an ...
1
vote
1answer
69 views
Adding/Removing a webapp to an embedded Jetty
I have a Jetty embedded server started up.
I wish to be able to do a hot deploy of a webapp and be able to unload it again, all programmatically.
Once the server is started, any attempts to add a ...
1
vote
2answers
270 views
Embedded jetty with json/xml response
I have embedded jetty server I want to create RESTful GET service which returns a pojo in XML/JSON format as response. can anyone give me one basic example how to write the handler for jetty? the ...
1
vote
3answers
68 views
Implications of building a java program against the jars of one web container and deploying it in another
What are the implications of building a java program against the jars of one web container (say Jetty) and running it in another (say Tomcat)?
I have an application which I run in Jetty durring ...
1
vote
2answers
239 views
Starting an embedded Jetty server as a background process
I have a Spring application and have used Tomcat to develop it and run it on the server. I was quite frustrated with deploy->undeploy-->deploy again-->.. development process, so I decided to switch to ...
1
vote
1answer
503 views
Configure Spring Security on embedded Jetty in Spring
I have a Spring beans definition file, as below
<bean id="jettyZk" class="org.eclipse.jetty.server.Server" init-method="start" destroy-method="stop">
<!-- properties, threadPool, ...
1
vote
3answers
319 views
How to make jetty server (ring.adapter.jetty) accessible from external hosts
I'm trying to run a web server using the following invocation
(run-jetty #'handler {:host "hostname" :port 8080})
This starts a server which I can access from the same host, but not externally. I am ...
1
vote
0answers
448 views
seam-wicket with Jetty 6.1.26, Weld 1.1.1
I am trying seam-wicket with embedded Jetty 6.1.26, Weld 1.1.1, seam-wicket 3.0.0, Wicket 1.4.17
After I fixed seam-wicket bug which prevents BeanManager being found (JNDI does not work, needs to ...
1
vote
0answers
180 views
Programmatic configuration of Struts in Jetty
I'm trying to configure struts2 within Jetty programmatically, but am having a lot of trouble doing so.
As these are for 'unit' tests, I don't wish to use spring or any other 'DI Framework'.
here is ...
1
vote
0answers
629 views
how to set connection/request timeout for jetty sever?
I'm running an embedded jetty sever (jetty 6.1.24) inside my application like this:
Handler handler=new AbstractHandler()
{
@Override
public void handle(String target, ...
1
vote
1answer
292 views
Embedded jetty application not working from jar
I have the following code:
Server server = new Server(9090);
final URL warUrl = Main.class.getClassLoader().getResource("com/domain/webapps/app");
final String warUrlString = ...
1
vote
1answer
527 views
Jetty http session is always null (Embedded Container, ServletHolder)
I am trying to implement a simple servlet which uses a HTTP session in
an embedded jetty (7.3.0 v20110203) container. To start jetty I use the following code:
Server server = new Server(12043);
...
1
vote
1answer
868 views
how to embed spring mvc application with jetty
I have a working Spring MVC application(doing everything I wanted when deployed to jboss) and now I'm looking a way how to start my application from a jar. What I've though of is when starting jar, ...
1
vote
0answers
374 views
Problem while calling servlet using Jetty
I installed jetty on my ubuntu and uploaded my webapplication in webapps folder of jetty but
when i am trying to call my servlet using $ajax
$("#signIn").click(function(){
$.ajax({
...