Tagged Questions
4
votes
1answer
903 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 ...
3
votes
1answer
638 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, ...
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 ...
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
1answer
871 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
1answer
243 views
Embedded web container supporting JSR-330 injection directly?
We have decided that all our modular code should use JSR-330 dependency injection and we have used Guice 2.1SVN or Java EE 6 CDI to do the actual injection in several projects and has worked very ...
1
vote
1answer
1k views
Embedded Jetty resourceBase classpath URL
I'm embedding Jetty in a Spring based application. I configure my Jetty server in a Spring context file. The specific part of the configuration I'm having trouble with is this:
<bean ...
1
vote
1answer
896 views
Dependency Injection: Jetty 7
My application requires several interface implementations which require a Jetty server to do their job. This is, however, not necessarily the case in every implementations of those interfaces so the ...
0
votes
0answers
70 views
How to have integration tests setUp() manipulate HSQL data in an in-memory DB running in embedded Jetty container?
I am trying to run integration tests against a REST web service process that is started in an embedded jetty container within the maven integration test phase. That much is working.
I want to ...
0
votes
1answer
172 views
Starting Jetty with Spring context in tests
I need to get Jetty server up and running at the beginning of the test. The Jetty server has to pick up Spring context and start set of RESTful services. Then I need to take the context used by Jetty ...
0
votes
1answer
94 views
What java framework is easiest to use with embedded Jetty web server? [closed]
I want to create java application with embedded web server (Jetty, are there any other servers which I can use for that?) and database (H2). GUI of application will be accessible through web browser.
...
0
votes
2answers
89 views
Writing functional tests with server-side java application that isn't a j2ee app
My company has a java-based batch application that's not implemented in J2EE which embeds jetty to handle some web service calls.
Untill now, none of these endpoints had any functional tests(using ...
0
votes
1answer
735 views
How to enable HTTP digest for embedded jetty / spring security?
I have two small http servers. One using the sun (com.sun.net.httpserver) server and one using an embedded jetty. Now I'm trying to get HTTP digest working on at least the jetty server (well, that was ...