Tagged Questions

7
votes
3answers
2k views

Jetty startup delay

I'm trying to figure out what would be causing a 1 minute delay in the startup of Jetty. Is it a configuration problem, my application, or something else? I have Jetty 7 (jetty-7.0.1.v20091125 25 ...
5
votes
4answers
3k views

How to make Jetty dynamically load “static” pages

I am building Java web applications, and I hate the traditional "code-compile-deploy-test" cycle. I want to type in one tiny change, then see the result INSTANTLY, without having to compile and ...
4
votes
3answers
2k views

Tomcat vs Jetty JNDI Lookup

I use Spring to configure my Java Web App and in my Spring configuration I obtain a datasource via JNDI for Jetty as follows: <jee:jndi-lookup id="dataSource" jndi-name="jdbc/myDataSource" /> ...
4
votes
1answer
990 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
2answers
1k views

How do stateless servers work?

I try to understand this. Normally each time user login system, server side will create a session, while user client side there is cookie. When people talk about stateless serverside, stateful client ...
3
votes
2answers
341 views

Solution for a jar file not findable in the `WEB-INF/lib` folder nor `src/main/resources` folder?

I have a Java application running on Jetty/App Engine/Spring. After removing some jar files from the pom and putting them in the WEB-INF/lib folder, they are no longer findable - I get numerous ...
3
votes
2answers
1k views

How to tie the Lifecycle for a Spring Bean to the webapps' lifecycle?

I want to create a bean that has start() and stop() methods. When the webapp's context is active, start() is called during Spring's runtime bootup. When the webapp is undeployed or stopped, the ...
2
votes
2answers
75 views

Getting the Jetty instance from Spring Web Service

I am creating a web service with spring + jetty + cxf using the following: <import resource="classpath:META-INF/cxf/cxf.xml" /> <import resource="classpath:META-INF/cxf/cxf-servlet.xml" ...
2
votes
4answers
388 views

Jetty Embedded Spring application

I have spring application which uses embedded Jetty instance. project | src | controller | webapps | jsp | WEB-INF | web.xml | ...
2
votes
1answer
110 views

Using custom WebAppClassloader in Jetty

I'm writing a spring based web application for our company and I received orders that I should encrypt classes of our app. I found a simple implementation of classloader that might do the trick here. ...
2
votes
0answers
52 views

Send customized response after custom certificate validation with Jetty 7 failed

we are currently using a certificate based login for our webapp (running Jetty 7.4) With JSSLUtils I configured a custom org.jsslutils.sslcontext.X509SSLContextFactory that basically inspects a ...
2
votes
1answer
705 views

Apache CXF + resource handler with embedded jetty in osgi with spring dm

I'm trying to run an apache cxf endpoint in an equinox osgi environment with jetty 7. I need the endpoint to be on address http://x.x.x.x:8080/ws/endpoint1 and have static resources on the root path ...
2
votes
2answers
1k views

Embedded Jetty and Spring Web MVC

For a pet project I would like to have an embedded Jetty run a Spring Web MVC app. I've used Spring in web containers (where it's easy to tell "where to start") and I've used embedded Jetty without ...
2
votes
0answers
625 views

ServletContext is null when using spring to load jetty with jersey/jax-ws

We're using spring to configure jetty and load everything up, and i'm trying to use jersey for web services and use the jetty/spring library so that I can autowire some service classes into my jersey ...
2
votes
1answer
958 views

Spring MVC with Jetty - what is supposed to go in the app-servlet.xml file?

I am working on a Spring MVC web application, that uses a Jetty HTTP server, which contains a WebAppContext <bean id="Server" class="org.mortbay.jetty.Server" init-method="start" ...
2
votes
1answer
172 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
4answers
357 views

How can I include test classes in exploded war for integration testing using Maven, Jetty & Spring?

I am trying to get integration tests going with Spring, Maven and Jetty. I have got a Jetty server to start up running my app before the integration tests start using the Maven Jetty plugin and a ...
2
votes
3answers
316 views

Which Jetty distribution to download to run a full blown Spring3.0 app?

I have noticed, that as of V7.x, there are two stand-alone distributions of Jetty. A Codehouse and an Eclipse distribution. Which one do I need to download if I want to run a full-blown Spring 3.0 ...
2
votes
2answers
457 views

spring or jetty.xml?

I have a spring web application (currently packaged as a war file) which I would like to be able to launch from jetty in a stand-alone configuration (small scale all-in-one deployment, and for ...
1
vote
1answer
45 views

Why spring bean profile can not get system property passed from mvn -D?

if I do a export spring_profiles_default=staging then run the project it will work. But if I do mvn -Dspring_profiles_default=staging -pl project/abc jetty:run-exploded, it will not work. Any ideas? ...
1
vote
0answers
152 views

Spring WebApplicationInitializer and Jetty 8.x

I am trying to deploy an app in Jetty using Maven: I have the plugin configured as follows: <plugin> <groupId>org.mortbay.jetty</groupId> ...
1
vote
1answer
266 views

Cannot initialize context because there is already a root application context present

My project uses tapestry 5.3.0,spring 3.0.6.RELEASE,hibernate 3.6.8.FINAL and maven.When I intruct jetty to start the project with mvn jetty:run, I get the following: 2011-12-13 ...
1
vote
1answer
307 views

Jetty 7 web.xml configuration for Spring web 3.0.5

I configured a Jetty 7 embedded mode in eclipse indigo. When i start jetty in eclipse it seems not loading my web.xml and spring-servlet.xml configuration. I search on the net, it seems everybody ...
1
vote
1answer
140 views

Wicket application throws exception on start up when starting with jetty:run-exploded

I'm currently developing a Wicket Spring Hibernate application. For development I'm using Jetty as web server. When starting the application with mvn jetty:run everything works as expected. But when ...
1
vote
1answer
84 views

When I run Spring this error offenly coming? is this version of jar?

When I run simple spring program, the following error ll display offenly coming. I am using Tomcat 6 and eclipse Helios. is this of version problem of jar? Can you pleased help me SEVERE: ...
1
vote
1answer
585 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
4answers
2k views

Issue with NoClassDefFoundError error in a web environment Spring/Wicket/Derby/Jetty

I am trying to build a simple JDBC Spring Template application, the web framework I am using is wicket and under the jetty 6 web server (through the Jetty Maven Plugin). Also, I am building the app ...
1
vote
1answer
973 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
628 views

Jetty, Spring, Run problem

Hi im trying to run a webapp, using spring and jetty and the following error is display: 2011-02-03 10:40:59.398::INFO: jetty-6.1.6 2011-02-03 10:41:00.637::WARN: Could not instantiate ...
1
vote
1answer
392 views

JTSL page parameters not being evaluated - using Spring MVC + Embedded Jetty

I am trying to get the Spring MVC annotation example working with an embedded Jetty web server, Spring MVC annotation example: http://www.vaannila.com/spring/spring-annotation-controller-1.html My ...
1
vote
1answer
607 views

How to set transaction timeout on Jetty JNDI Atomikos configuration

I am in the process of converting various Spring beans to JNDI lookups. Currently I am using Jetty to test this. I have configured the UserTransaction according to the Jetty documentation and it ...
1
vote
2answers
5k views

Web service using CXF, Jetty and Spring

I try to create simple web service with CXF, Jetty and Spring. I create service interface @WebService public interface AnonymousService { @WebMethod public String getVersion(); } and its ...
1
vote
1answer
1k views

spring embeded jetty+cxf

I'm running embedded jetty inside of a spring ioc container. The spring ioc contains also an embedded hsqldb which makes the whole configuration a nice and complete web application development ...
1
vote
2answers
127 views

User thread spawning in Jetty

I have a web application running over Jetty, and I need to spawn a thread for idle connection handling. This thread is being started in the spring context. I know it's not a good practice to spawn ...
1
vote
1answer
3k views

Spring, JPA, Hibernate, Jetty 7 Integration

Have anyone successfully run any spring and JPA application in jetty 7? I am getting following exception. This application throws no error in jetty 6. INFO [main] org.eclipse.jetty.util.log - Logging ...
1
vote
1answer
1k views

Spring MVC and Jetty: Prevent jsessionid from being used in RedirectView on redirect to external site

In Spring MVC 2.5 with Jetty - probably with any servlet container -, I want to redirect to an external site using RedirectView via the magic "redirect:" prefix for the view name in ModelAndView. ...
1
vote
2answers
300 views

Connection reset SQLException with jetty

I've switched my webserver from tomcat to jetty and encounter a "java.sql.SQLException: Io exception: Connection reset" when back from idle time (eg. i go out for a while) :( This issue doesn't ...
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
2k views

Grails 1.2.1 with Spring 3.0.0 dependency problem under Jetty

Just moved to Grails 1.2.1 (used 1.1.1 before). Changed application.properties, ran grails upgrade, fixed BuildConfig and Bootstrap - everything works just fine from grails console. However, getting ...
1
vote
1answer
914 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 ...
1
vote
1answer
172 views

Creating a process from within an instance of Jetty that was launched from Maven

I'm looking to launch a separate Java process from within an instance of a Spring controlled bean that runs in a Jetty container. The Jetty instance was launched from mvn jetty:run This separate ...
0
votes
1answer
38 views

I put images under /webapp/img/test.png but it doesn't render in jetty

I added a assets folder and an a images subfolder: /webapp/assets/img And inside I put a test.png file. From inside my index.jsp page, I put a img tag: <img src="/assets/img/test.png" alt="" ...
0
votes
2answers
70 views

Running a Spring MVC application with Jetty gives “class path resource does not exist”

I'm new to Spring and I encountered a small problem: the web application runs perfectly when using Tomcat but has problem when running it with Jetty. I run the following commands: mvn package java ...
0
votes
1answer
33 views

Advice on how to refactor spring mvc into plain servlets or jetty handler

I have a spring mvc app that I want to refactor out, speficially removing the spring related code and wiring. It is a simple spring mvc at this point, so the key things I have to do our dependancy ...
0
votes
1answer
99 views

How do I migrate a Java webapp to Heroku

I have an app that uses Spring and is run with Jetty. I was hosting it on an Amazon EC2 instance but now I want to put it on Heroku. If found the following link but I don't know if it covers ...
0
votes
0answers
37 views

Deployed app to jetty, getting a error: /var/cache/jetty/tmp/jsp

I am trying to deploy my web app to jetty. I installed jetty on ubuntu 10.04. At first I was getting a no jsp support, so I edited the /etc/default/jetty file and added jsp to the extra arguments ...
0
votes
0answers
50 views

GAE throws IllegalStateException: WRITER

I have an GAE + Java + Spring app, with very simple controller: @RequestMapping(value = ['/_warmup', '/_ah/warmup']) @ResponseBody String warmup() { return 'OK' } It just return string, and ...
0
votes
1answer
191 views

Why is my simple springmvc web application shutting down Jetty?

Looking at my log files of a simple springmvc application (the homecontroller index action outputs 'hello world'), it seems the site is shutting down for some reason? I simply pushed my .war file to ...
0
votes
1answer
469 views

Jetty 7 Spring 3.0.5 integration

I am new to Jetty and Spring technology. I trying actually ton integrate Spring 3.0.5 to Jetty 7 but i am having every a error message. My configuration its Mac Os X Lion, Eclipse Indigo, Jetty 7, ...
0
votes
2answers
63 views

Approach on how to know if components (spring/jetty) are fully initialized

I have a backend server (Jetty) that processes HTTP requests and interacts with a MySQL database. It is all wired-up with Spring. I have also a UI front end in Swing that serves as an ...

1 2