Tagged Questions
6
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
2k 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
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 ...
3
votes
2answers
326 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
4answers
259 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
86 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
45 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
642 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
952 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
2answers
971 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 ...
2
votes
0answers
583 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
882 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
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
4answers
347 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
300 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
447 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
153 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
242 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
125 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
72 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
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
4answers
1k 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
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
1answer
378 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
592 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
4k 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
126 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
2k 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
294 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
895 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
170 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
2answers
22 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
28 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
87 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
28 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
44 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
175 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
321 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
57 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 ...
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
1answer
54 views
manually deployed war ignores jpa annotation mapping, but it works in eclipse
I have generated a spring web project with spring roo. When I run the project inside eclipse via wtp on a jetty 7.2 it works fine. but when I package it to a war file, copy it manually into jetty's ...
0
votes
0answers
164 views
Atomikos + Infinispan + Jetty errors
I'm using Spring with hibernate, atomikos and infinispan on jetty. After annotating any entity as @Cache(usage = CacheConcurrencyStrategy.TRANSACTIONAL) following error appears
13:24:02.590 [main] ...
0
votes
0answers
64 views
Jetty Spring Web Services sqljdbc_auth.dll conflict
We have created 2 web services from similar code bases that are using Spring and Hibernate and we are wanting to run them in a Jetty Server. Each Web server can initliaze the wsdl just fine from ...
0
votes
1answer
419 views
Upgrading to ActiveMQ 5.5 throws java.lang.ClassNotFoundException: org.slf4j.Logger
We have been using ActiveMQ 5.2 and we are looking into upgrading to ActiveMQ 5.5.
We use spring framework (2.5.6) and use Jetty (6.1.2) when running on dev mode.
I have not made any changes to ...