2
votes
0answers
14 views

Jetty Maven plugin reload ignores web.xml listeners

I have a Spring MVC Java web application using 2 Spring contexts. The root application context, loaded via ContextLoaderListener, and the servlet Context. I'm loading the application with the Jetty ...
0
votes
0answers
21 views

Jetty start-up optimaza

I am using apache CXF to generate java source classes from wsdls (aprox 50), which are loaded in jetty server. Jetty (v.7.4.5) is started programmatically using ...
1
vote
1answer
66 views

Spring Maven - context configuration in resources folder

As I found in other question at stackoverflow, it is better to keep the configuration of spring in src/main/resources folder. However when I use mvn jetty:run it tries to load context configuration ...
0
votes
1answer
78 views

maven-scala-spring-jetty servlet not initialized

I want to create a maven scala spring hibernate project using ECLIPSE. Im following this tutorial : http://grahamhackingscala.blogspot.fr/2010/01/scala-spring-hibernate-maven-webapp-how.html Now I'm ...
0
votes
1answer
141 views

NoClassDefFoundError while starting up jetty Server

I am trying to host my webapp (spring) in jetty server. I copied my war file to the 'webapp' folder in the jetty server. I am not trying to embed the jetty server, but trying to host the app within ...
2
votes
1answer
94 views

How to cancel start or shutdown jetty if WebAppContext fails to start

I am using Maven Jetty Plugin, is there a way to prevent the server from starting up or shutting down (for example with maven-jetty-plugin) if ANY bean fails? Here's an example: 2013-04-22 ...
1
vote
1answer
60 views

Jetty and tomcat doesn't load implementation of AbstractAnnotationConfigDispatcherServletInitializer

I have Spring 3.2 application with a pure java based configuration. When I start the application with "mvn jetty:run" everything works fine. But when I deploy a war file in Jetty(9.0.2) or Tomcat(7.0) ...
0
votes
1answer
14 views

Using Spring Aspects with Jetty

I have an application that uses Aspects with Spring 3.1. It runs perfectly with Tomcat 7. The advised methods get called as expected. I want it to work with Jetty. I've previously used Aspects with ...
0
votes
0answers
82 views

java.lang.IncompatibleClassChangeError with embedded Jetty and Jersey (no GAE)

I'm creating a REST API based on Jersey + Spring + Hibernate. Everything works nicely when deployed. I tried to add some integrations test using RestAssured which i want to be started from an ...
0
votes
1answer
63 views

Deploying Spring app to Jetty

I want the Jetty to run my spring app. In eclipse with run-jetty-run plugin everything seems fine. When I copy the war file (which I produce with maven) to the jetty webapps, and then enter the url, I ...
0
votes
1answer
81 views

How to increase Jetty threadpool size with jetty-runner on Heroku?

I have a Java (Spring MVC) webapp running on Heroku. It uses the setup described in this article: Getting Started with Spring MVC Hibernate on Heroku It looks like Jetty by default uses just one ...
0
votes
0answers
62 views

Problems with Spring 3.1 Java-Configured WebApplicationContext and Jetty

I would like to access the Spring beans associated with a Servlet. I have the following code snippet : final ServletContextHandler context = new ...
0
votes
0answers
56 views

Spring does not find WebApplicationInitializer when packaged in a fat Jetty jar

I am trying to create a single "FAT" jar of embedded Jetty and my code. Unfortunatly if I run from the jar I get this error: No Spring WebApplicationInitializer types detected on classpath If I ...
1
vote
1answer
292 views

Integration tests using jetty, hsql, jndi, and spring

I am attempting to create some integration tests for my Spring web app using Jetty accessing a local HSQL database. The goal: run the tests using Selenium (or similar), mock/stub out all external ...
0
votes
0answers
92 views

java.lang.ClassNotFoundException: javax.servlet.DispatcherType while using Atmosphere Spring example

I am trying to experiment the Atmosphere framework. I've downloaded this example on github: https://github.com/Atmosphere/atmosphere-extensions/tree/master/spring/samples/spring-websocket Since I ...
0
votes
0answers
255 views

running jsf spring hibernate project on Jetty server with eclipse juno

I want to use Jetty to run my Java EE project I use jsf, spring and hibernante as a framework and eclipse juno IDE and maven but after installing the jetty plugin : I see this error when I run ...
1
vote
1answer
422 views

Spring JMS: each DefaultMessageListenerContainer deployment takes longer than one before

We're using Active MQ 5.6.0, and have configured a number of JMS message listeners (17 currently), each using a Spring 3.1.1 DefaultMessageListenerContainer, deploying to a Jetty 7. First of all, ...
0
votes
1answer
106 views

Apache camel throwing linkage error

I have included apache camel inside my application to forward requests matching a string pattern. When I try to deploy the packaged web application inside the jetty application server (version ...
0
votes
0answers
14 views

How a application running in server can contact another application running as a process locally

I have two projects Web project and a Core Project(Spring) namely SQWeb and a SQCore Project . The Web Project SQWeb runs in jetty web server and SQCore Project runs locally as a windows process ...
1
vote
2answers
77 views

How will this connection pooling scenario pan out?

We have a web application that uses C3P0 to pool our connections. We inject C3P0 as a data source into JdbcTemplate. You can see how we do this here: <bean id="dataSourceDev" ...
0
votes
0answers
102 views

Embed MVC and jetty in an existing annotation-driven spring application

I have an Spring-Application which is configured completely via annotations. I initialize it with new AnnotationConfigApplicationContext("com.company.configuration"); Now I want to use (or ...
1
vote
1answer
152 views

spring jetty UriInfo inject is null

we are using spring jetty for rest call. we are injecting context as follows @Context private UriInfo uriInfo; we have inject the uri info in many services. It is working fine for all, except one ...
0
votes
0answers
68 views

Cannot read Spring's @RequestBody when using Netty's DefaultHttpRequest

I've inherited some code where the developer uses netty to make internal http calls on the server. First we create a ClientBootstrap with a Pipeline that has an HttpCodec handler, and then connect ...
1
vote
1answer
149 views

Unexpected Jetty Timeout

I'm getting a timeout exception well before the set connection timeout. Does anyone have any ideas on what is going on? Any input would be great! 15 Jan 2013 10:44:40,944 [ ...
0
votes
0answers
172 views

Node.js and Tomcat working together

I have a webapp working on Node.js and I'm planning to fetch my data from a Java application running on a Tomcat + Jetty server. So, what I'm having trouble is how to organize these two ...
0
votes
1answer
526 views

Spring web project deploy failed in tomcat but works in jetty

While using tomcat to deploy my spring web project,it gives me the following exception: org.apache.catalina.startup.ContextConfig processAn notationsJar SEVERE: Unable to process Jar entry ...
0
votes
0answers
108 views

What happens after limit of connections is reached in a Jetty HttpClient used in an Android app?

I have a client that constantly talks to a server via http using android-annotations's RestClient. Every time the app is open for a long time and lots of requests have been made, new http requests ...
4
votes
3answers
372 views

jetty-maven-plugin and loadTimeWeaver

can't seem to have my spring webapp working with jetty-maven pluging i always get org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'loadTimeWeaver': ...
1
vote
1answer
298 views

Embedded Jetty to test the spring application startup

What I am trying to do is, to have a test to startup the whole application to see if there's any error. But I want to use the applicationContext.xml from the /src/resource folder and not form ...
1
vote
1answer
67 views

Automated API stability testing

I have a webapp I want to test for API stability. To test the API I have a dependency on the project containing the domain objects written by my API, I call the api and try to deserialize the objects ...
2
votes
2answers
194 views

Starting jetty with spring xml as a background process/thread

My goal is to set up a jetty test server and inject a custom servlet to test some REST classes in my project. I was able to launch the server with spring xml and run tests against that server. The ...
0
votes
1answer
748 views

java.lang.ClassNotFoundException: org.hibernate.cache.access.AccessType while deploying spring/hibernate application in Jetty

HI I am trying to deploy my app in Jetty and get the following error ,The app has a module pumpkinservice that depends upon a hibernate module pumpkinstore. 2012-11-10 11:10:01.138:WARN::Failed ...
0
votes
1answer
897 views

using ReloadableResourceBundleMessageSource in annotations injection

i am using ReloadableResourceBundleMessageSource in my web project, and i inject the class to a servlet, the problem is that i want to inject the class using spring annotations and it does not work ...
1
vote
2answers
813 views

Spring MVC - No mapping found for HTTP request with URI

I'm aware that there are loads of questions on the topic but none of the solutions i found here worked for me. I'm using Spring with Jetty 6 so i don't have a web.xml file. The mapping for the spring ...
1
vote
0answers
211 views

Reverse proxy with Apache and static content behind application inside of jetty

My applications is spring based and served by jetty. The current setup looks like this. Apache - > Reverse proxy -> Embedded Jetty -> Application When I access the app directly ...
4
votes
1answer
1k views

How to change jsessionid cookie path to server root in Spring app on Jetty?

I have a Jetty server running a Spring app on the /app context. The app uses sessions, so it sets a session cookie, which responds like this: ...
1
vote
1answer
1k views

Spring+Hiber error during mvn jetty:run

After run: mvn jetty:run HTTP ERROR: 503 Problem accessing /ContactManager. Reason: Service Unavailable Powered by Jetty:// in log file - error: ERROR: ...
3
votes
2answers
793 views

What's the correct Maven dependencies to use Spring JMS and ActiveMQ?

This is quite a common problem and I have found plenty solutions that do not work for me on the web. I am declaring: <dependency> <groupId>org.springframework</groupId> ...
0
votes
3answers
156 views

Creating a different instance of an Object with scope prototype in OSGi using Spring

It is a complicated problem so I will explain it as clear as I can. I have three OSGi bundles A, B, C deployed into Apache Karaf. I also have a security bundle which is used by those A, B, C bundles. ...
0
votes
1answer
179 views

Trying to move to Jetty from Tomcat for testing on workstation, tomcat vs jetty

I been programming Spring/Web projects for sometime using eclipse and tomcat but now that I am getting into Maven I am also thinking about using jetty for my workstation testing. I made a sample web ...
0
votes
1answer
111 views

How to make DispatcherServlet initialization errors bubble up from embedded Jetty?

I have an application which contains an Embedded Jetty instantiated by a main application context. In Jetty there's an additional Spring web application context initialized and a service is exported ...
0
votes
0answers
158 views

Saving works using Tomcat, jetty is giving me a java.lang.NoSuchMethodError for Persistence.getPersistenceUtil()

I'm running a spring mvc application that uses hibernate. When I save a form, it works fine in Tomcat 7. When I run the same using an embedded instance of jetty, I get this error: Problem accessing ...
0
votes
1answer
245 views

Sharing Object Between OSGi Bundles

I have two OSGi bundles deployed in Apache Karaf. A and B. My A OSGi bundle works as basic authentication handler. I have set up my security handler it works fine: <bean id="securityHandler" ...
4
votes
4answers
1k views

Jetty isn't picking up my spring application

I have a Spring MVC application where I use hibernate, freemarker. It is setup as a multi-maven project. I am using IntelliJ ultimate. Jetty starts fine, but when I go to http://localhost:8080/ ...
0
votes
1answer
562 views

Difference serializing POJO using RestEasy when deployed with JBoss AS 7 and Jetty

Deploying my application on JBoss AS 7 and then Jetty, I noticed an undesirable difference when RestEasy serialized my POJO. With Jetty, I have the following JSON: { "pojo-name":{ "lines":[ ...
1
vote
2answers
199 views

Load spring context in phases

This is one of those strange questions where people would ask - why? So I will start with why I would like to do this and then go into the issue. I would like to have more control over how the spring ...
1
vote
2answers
732 views

Unable to load external spring config files with jetty maven plugin

I try to launch a webapp with jetty-maven-plugin as in http://wiki.eclipse.org/Jetty/Feature/Jetty_Maven_Plugin. But I want to externalize my environment configuration files. Here is my project ...
1
vote
3answers
2k views

Embedded Jetty with Spring MVC

I have a multiple maven module for my spring MVC and hibernate application. My layout is as follows: /myapp-web /myapp-web/src/main/java /myapp-web/src/main/webapp /myapp-web/src/main/webapp/web-inf ...
0
votes
1answer
683 views

Spring, Hibernate, C3P0 and Jetty

I inherited a project and am trying to get it to run via jetty:run but to no avail. Works fine using run-war or run-exploded, but cant seem to nail down issue with plain old run. Its giving me the ...
0
votes
1answer
2k views

NoSuchMethodError

I have found similar problems on the web, but none of the posted solutions appear to work. I am attempting to run my web application under jetty instead of always building and running in tomcat to ...

1 2 3