maven-jetty-plugin is a Maven plug-in which embeds the Jetty webserver within a Maven build. It is configured in the Maven POM file. It is extremely useful for Rapid Application Development.

learn more… | top users | synonyms (1)

2
votes
1answer
23 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 ...
1
vote
1answer
29 views

Maven and webstart project how to test using jetty?

I have a Maven project and I have integrated the webstart-maven-plugin. The jnlp gets generated and I would like to test it by deploying it into to jetty but haven't found any jetty goals to achieve ...
0
votes
2answers
91 views

“Too many open files” exception while running mvn org.mortbay.jetty:jetty-maven-plugin:run

In one of my project , I have used Lift 2.5 M4 and Scala 2.10.0 . In this project , I am using Jetty 8.1.10.v20130312 . But while running project through mvn jetty , I am getting unexpected ...
2
votes
1answer
97 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 ...
0
votes
1answer
78 views

change generated war name using maven jetty plugin

I am using maven Struts2 blank artifact to create my web application. Here is my pom.xml :- <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
2answers
40 views

External static resources with Jetty

I have the following Jetty config: <webAppConfig> <defaultsDescriptor>${project.basedir}/configuration/webdefaults.xml</defaultsDescriptor> ...
0
votes
1answer
111 views

How do I enable jetty-maven-plugin 8 server debug output?

I'm trying to upgrade our jetty from 7 to 8 so that we can take advantage of servlet 3.0. It doesn't appear that any settings or configuration changes were made from 7 to 8. Previously we've been ...
0
votes
1answer
22 views

how can I config jetty version with maven-jetty-plugin?

I want to run a webapp with Jetty-6.1.25, but how can I config the version number of jetty with maven-jetty-plugin?
0
votes
0answers
22 views

configuring oracle datasource for jetty on maven hpi plugin

I am developing a Zenkins plugin and I want to debug that using eclipse. If I execute mvnDebug hpi:run it will deploy the Zenkins plugin and start the jetty server on a debug mode. But my problem is I ...
0
votes
1answer
41 views

Different configuration for run and run-war

is it possible to have to configurations of jetty? I mean situation such as this: if I've started jetty with jetty:run, do this [ different webAppDirecotry ] if I've typed jetty:run-war, do something ...
0
votes
1answer
242 views

Debug web app in IntelliJ, webapp built by maven, run by jetty

I'm using s/o code, it's a java webapp built by maven. The webapp is run by maven script, like below, and the app is run on localhost:8080, : <build> <plugins> ...
0
votes
0answers
99 views

org.mortbay.jetty.EofException caused by aborted ajax call in jsp

I wrote a SpringMVC web app running on jetty and I have jquery ajax call in the jsp. While the ajax call is in progress, I navigate the page away and I will see the following error: Error Title: ...
0
votes
1answer
345 views

Jetty 9 Maven plugin and JNDI with No Suitable Constructor

I'm trying to get JNDI resource creation to work with the Jetty 9 Maven plugin. The same configuration works correctly with Jetty 8 but yields an java.lang.IllegalStateException: No suitable ...
0
votes
1answer
43 views

Execute “generate-resources” build phase when Jetty restarts?

I'm using the jetty-maven-plugin to act as a local server for my web app. During the "generate-resources" phase of my build, I execute lessc and grunt to compile my CSS and JavaScript respectively. ...
0
votes
1answer
211 views

jetty-maven-plugin does not show sysout and log messages

I have just started using jetty-maven-plugin. I found some strange behavior regarding logs and system output. When I start jetty with maven mvn -Djetty.port=8093 ...
0
votes
0answers
46 views

Logback Compatability Issue with Jetty

I'm getting a build error after adding some logging to my application. I'm using Logback with Maven/Jetty. Anyone know how to resolve this compatibility issue? [ERROR] Failed to execute goal ...
0
votes
2answers
161 views

Add test jars in maven-jetty-plugin or create test-war with maven-war-plugin

I'm using maven to build a multi-module webapp. I would like to run my integration tests in their own module and use the jetty plugin. In order to get everything to work I will need to add a couple of ...
1
vote
1answer
389 views

java.lang.NoSuchFieldError: IS_SECURITY_ENABLED

I want to deploy a service to 2 servers. I succeed on one server, but failed on the other one. In fact, I try my best to make their environments same. The error log is as following: 2013-01-21 ...
2
votes
2answers
551 views

File locking in Windows with Jetty 9 and Maven plugin

There is a lot of information available on the this subject, but I can't get it to work in Jetty 9. The most recent approach I found was: Jetty Maven Plugin is ignoring custom webdefault.xml I ...
0
votes
2answers
93 views

mvn jetty:run get a build failure

I have a project and I ran it successfully with mvn jetty:run in the command window in windows. Then I tried maven build in eclipse. After that, it says that a build failure occurred and I end up with ...
0
votes
1answer
83 views

maven transitive dependencies lost in jetty:run

I have a largish project that needs to be usable either with a command-line interface or through a web-app. The core server is deployed as 10 separate jars. The web-app is currently deployed as a ...
0
votes
1answer
335 views

How do I get myBatis update statement to commit in a Java Spring application?

I have Java Spring application running in a jetty-maven plugin. When I call a myBatis insert statement, the statement is automatically committed. However, when I call update, the statement is not ...
0
votes
0answers
81 views

Using Jetty for Integration Testing in Maven Multimodule Build

I'm trying to move my current project (7 separate projects) into a multi module build. 2 of earlier projects in the cycle produce wars which are deployed to a jetty environment to support integration ...
0
votes
3answers
744 views

How to add environment variables to maven-jetty-plugin

I am using the maven jetty pluggin as follows: <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> ...
0
votes
1answer
110 views

Maven build war doesn't work properly on Tomcat 7

I've been working on a web app that and here's me configuration before I get started telling my story. Configuration: IntelliJ IDEA 11 + Java 7 + (Maven + Jetty 8.0.1). When I clean and build my ...
0
votes
1answer
123 views

Jetty Maven Plugin ignores my jetty.xml for no apparent reason

I am getting a bit frustrated from this Jetty Maven Plugin.. I am trying to configure the jetty-maven-plugin with my jetty.xml file. ( see below ). I expect Jetty to start on port 8081. However ...
1
vote
1answer
104 views

How to set reference to the variable in jetty configuration file

I'm trying to execute run-forked via maven Port number is stored as environment variable "jetty-start-port" How to set reference to the variable in jetty configuration file to this tag <Set ...
1
vote
0answers
215 views

Compression with Restlet + Jetty embedded

I'm trying to enable the compression in restlet + jetty embedded but in my test application the compression works only with requests handled directly by servlets and not for those handled by restlet. ...
1
vote
3answers
2k views

Set the permgen size for the Child JVM processes that Maven will spin off

I am building a Maven Java app on a Jenkins build server. I am running into java.lang.OutOfMemoryError: PermGen space many times during the build on Jenkins (but never on my localhost) and hence it ...
2
votes
3answers
697 views

What maven-jetty-plugin 8 configuration allows reloading of JSP files when they change?

Consider a default webapp configuration in Maven (for the test case I used struts2-blank-archetype from https://repository.apache.org/content/groups/public/archetype-catalog.xml ). This archetype ...
1
vote
2answers
196 views

Adding a jar to jetty plugin for maven

I used to deploy my WAR on local tomcat server and had a jackson-core.jar in the lib folder of tomcat. Now, I've switched to maven and am using the jetty plugin. Everything works fine except that I ...
3
votes
1answer
357 views

How to pass environment variable to process started as mvn jetty:run?

The process started by maven jetty plugin seems ignoring any environment variables I specify. So far I've tried adding variable through command line like: set myvariable=1 Also I've tried adding ...
0
votes
1answer
114 views

Jetty Plugin - docBase Equivalent

I have a directory C:\documents\ and I would like its files and sub-directories to be accessible by visiting http://localhost/something/? Using Tomcat, I know that I can use <Context ...
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
2answers
226 views

Classpath Resource in Tomcat6 (Works in Jetty)

I'm having trouble with a legacy Web Application that I'm migrating to Maven3. I need to obtain a file from the Classpath that in the directory structure is located in: ...
1
vote
1answer
726 views

MyFaces, PrimeFaces and Jetty: How to fix primefaces-p.taglib.xml parsing error?

I'm trying to make a simple JSF (based on PrimeFaces) application run. The main page is pretty simple: <?xml version="1.0"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
2answers
539 views

Maven Jetty run JNDI configuration

My project structure looks like this: parent POM |-- app-core |-- app-model |-- app-services `-- app-web In myy pmo.xml for app-web: <plugin> ...
0
votes
0answers
150 views

Jetty Maven Plugin: using scan

I have a JavaScript project in Netbeans with the following file structure: src/main/javascript src/main/resources (containing my index.html) src/main/webapp Doing the mvn build, the target folder ...
0
votes
1answer
394 views

BoneCP not logging SQL statements

I'm using an embedded Jetty 8 Server with the jetty-maven-plugin. I cannot get BoneCP to log the statements that are executed. Am I doing anything wrong? Are there any workarounds? This is my ...
0
votes
1answer
85 views

Absurd ClassCastException using maven-jetty-plugin

Does anyone know what might be causing the following ClassCastException: org.eclipse.jetty.server.Request cannot be cast to org.eclipse.jetty.server.Request This happens inside the ...
1
vote
2answers
836 views

How to override web.xml in jetty-maven-plugin when filtering

I've got ${properties} in my web.xml that are filtered based on profiles. I want to use the web.xml with the final properties with jetty:run but I'm not having success yet, it always sticks with its ...
0
votes
0answers
127 views

How Debug my JSP pages in Eclipse+maven+jetty?

Here we go I can debug my java files remotely using Eclipse+Jetty+Maven. But I can't place breakpoints in JSP pages. And even I cant locate servlet classes for JSP pages in my PC. I dont know where ...
0
votes
1answer
160 views

Error while running Jetty server with Maven in Eclipse

I am using m2eclipse. I configured jetty-maven plugin in pom.xml properly. when I try to execute through CMD its working fine. No error Whereas when I try to execute through eclipse, $ ...
1
vote
2answers
2k views

mvn jetty:run throwing java.util.zip.ZipException: invalid entry size

Im trying to run a pretty basic project (its basicly a wireframe with no functionality at all, just some maven dependencies) in jetty. To do so I'm using mvn jetty plugin: mvn jetty:run But im ...
0
votes
2answers
423 views

jetty-maven-plugin setting buffers sizes

Returning to jetty-maven-plugin I've trouble to set buffers size. My use-case imply file upload (usual size is ~700Ko). Because the upload is too big for jetty-maven-plugin default configuration I ...
1
vote
1answer
670 views

Static content with Jetty and Spring

My webapp doesn't show any static content. Spring MVC Twitter Bootstrap Jetty 7 Build project: mvn clean install with Jetty included Web.xml <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
1answer
193 views

forcing jetty (running on maven) to ignore ssl error

is there any way to force jetty (which runs on maven) to ignore ssl handshake problem? currently my machine has self signed certificate. it makes problem when my jetty gets https request from other ...
0
votes
2answers
313 views

jetty WebSocket custom events

I am new to WebSockets with jetty, before I have used node.js together with socket.io to create a WebSocket Server. But due to different requirements I will have to use a java ...
0
votes
1answer
168 views

How to import a Maven+jetty project to Eclipse as a Dynamic Web Project?

I have a Maven project that uses Jetty (pom), it can be run like this: $ mvn jetty:run Many developers want to debug it within Eclipse. QUESTION: What is the most straightforward way to import the ...
1
vote
1answer
172 views

Configuring context path for jetty with static resources

I have a maven application configured to start Jetty and also load statics from ../client . Configuration is below: <plugin> <groupId>org.mortbay.jetty</groupId> ...

1 2 3 4