1
vote
1answer
301 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 ...
1
vote
2answers
285 views

Configuring a JNDI resource SQL in Jetty

I am having a lot of difficulty configuring a JNDI Resource in Jetty. I've gotten this to work in a Tomcat easily using context.xml and the Resource node. Attempts have been made to specify the ...
0
votes
1answer
244 views

Jetty uberjar jndi datasource configuration

More specifically i got executable war containing all the dependencies. Application starts without jndi datasource like a charm runing it with jndi datasource failed though. I believe there is no ...
1
vote
0answers
80 views

Exception while starting jetty 9 from Ant and Ivy

I am trying to start Jetty 9 from Ant using ivy (not maven) and getting the following exception Object of class 'org.eclipse.jetty.ant.WebApplicationProxyImpl.AntWebAppContext' is not of type ...
0
votes
1answer
277 views

Configuring DataSources with IDEA IntelliJ Jetty Plugin (jetty-env.xml)

I'm trying to getting started with the IDEA IntelliJ Jetty Plugin. In our application we use a JNDI DataSource to access the actual database. For development therefore we generate a jetty-env.xml ...
3
votes
0answers
304 views

jetty: how to declare JVM scoped jndi entries and bind to java:comp/env

I'm trying to define some JNDI entries in the Jetty server (they will be JVM scoped) but they aren't getting automatically bound to the "java:comp/env" namespace as expected. I'm following the ...
0
votes
1answer
199 views

How can I use JDBC connection pooling in Jetty 8?

I used Tomcat's JDBC connection pool previously where it could be easily configured in Java. Now I use Jetty 8. How can I use JDBC connection pooling in Jetty? I looked here however I don't know ...
0
votes
0answers
135 views

Can I deploy xadisk as a JCA resources in Jetty?

what I want is merge file transaction and db transaction into one. and our application is running on Jetty. but Jetty isn't must. we hope transaction can running standalone, not depend on server. ...
0
votes
1answer
686 views

Using JNDI with Jetty 8

I am trying to configure Jetty 8 (to be specific: 8.1.4.v20120524) to use JNDI. In my jetty.xml file I have the following configuration: <Array id="plusConfig" type="java.lang.String"> ...
0
votes
0answers
375 views

maven packaging jar with jndi datasource

If I package the application as a war, I can set the jndi datasource using web.xml and jetty-env.xml. But I want to package my application as jar and my understanding is that u cant use web.xml and ...
1
vote
1answer
150 views

To JNDI or not to JNDI when embedding an application server?

I'm coming from a full application server background and considering running apps on a lightweight embedded server such as Jetty. I've always used JNDI to look up connection pools for things like ...
2
votes
1answer
411 views

Jetty Bind DataSource in JNDI Context

I would like to bind DataSource object to (eclipse) jetty's JNDI context programatically. I need for testing purpose. Here's a piece of code I have now: server = new Server(SERVER_PORT); ...
1
vote
2answers
2k views

jetty-env.xml with DataSource leads to failing WebAppContext on mvn jetty:run

I have a really simple webapp project with maven and jetty that has been working very well until now. But now I need to setup MySQL connection pooling with JNDI as the database connections always time ...
0
votes
0answers
666 views

jetty-maven-plugin not adding JNDI datasource resource from Jetty.xml

I can't seem to get my datasource added using jetty-maven plugin. There are no errors thrown but when i look in the context the datasource has not been added. I have verified that the path to the file ...
1
vote
1answer
472 views

jetty jndi datasource issue

Simply put. I want to have a oracle jndi dataSource available for webapp with connection pooling.I want to maven install the project, then manually deploy it to jetty hightide 7.xx server and run. I ...
0
votes
1answer
399 views

How to get Jetty to use JVM scoped JNDI?

I'm trying to setup a JNDI resource for a Jackrabbit repository factory in Jetty. The problem is that I seem to be getting thhe JNDI as webapp scoped. I need it to be JVM scoped. As far as I ...
0
votes
1answer
560 views

Jetty, JNDI, Postgresql: Class not found

I'm trying to set up a JNDI DataSource in Jetty. In the start.ini file I have add the jetty-plus.xml file and the Options look like this: OPTIONS=Server,resources,websocket,ext,plus,annotations ...
0
votes
1answer
144 views

How do I connect to my database using a web app and Jetty Runner?

I have a postgresql database and I need to connect it to my web app(created in Grails) using Jetty Runner. What's the simplest way to do that?
0
votes
1answer
1k views

How do I setup Connection Pool with GWT/Jetty in eclipse?

Excuse me if this question seems repetitive, but I was unable to gleam a workable solution from the search results of existing posts. I have a web app that uses a JDBC connection pool. The ...
0
votes
2answers
760 views

Jetty Classloading issue

I'm using the jetty maven plugin to run a webapp locally and I'm getting a class cast exception when I try to pull in a JNDI resource. I have a jetty config with a resource object, which is a ...
0
votes
1answer
254 views

Can multiple servlets bind to the same datasource (JNDI)?

I have a datasource set in my Jetty.xml file that looks like this: <New id="MySQL_DS" class="org.eclipse.jetty.plus.jndi.Resource"> <Arg></Arg> ...
2
votes
1answer
649 views

Jetty run from IntelliJ won't read the jetty-env.xml

I'm debugging in IntelliJ and since I can't seem to get JBoss to run (due to context and virtual-host name issues), I'm using Jetty 6.1.26. I was able to run and debug while using a DB connection ...
3
votes
1answer
5k views

JNDI lookup failed (NameNotFoundException)

UPDATE: Well, it seems that this is a problem only when I try to debug locally. When published on Jetty (not the same machine) it works great. Is it possible to configure the jetty.xml file used by ...
1
vote
2answers
2k views

Jetty 7: configuring JNDI for Start.java

Following Wicket 1.5's lead, I'm converting a project from Jetty 6.1.25 to 7.5.0.v20110901. My existing Start.java contains the following setup, which I use to configure JNDI: EnvConfiguration ...
1
vote
1answer
1k views

Jetty Data Source, Hibernate, datasource not found

I'm attempting to configure a data source in Jetty 7.4. I was able to do this successfully with my webapp in a Tomcat context.xml. Here's what I have in the jetty.xml (this is going to be the only ...
3
votes
1answer
3k views

Jetty 6: Cannot create context (NoInitialContextException)

I want to use connection pooling with Jetty 6, but so far it is giving my a lot of troubles. I do InitialContext context = new InitialContext(); It doesn't throw an exception, but when I inspect ...
1
vote
0answers
188 views

Jetty sealed javax.naming

I have a legacy application using struts 1 and torque. I have made an effort last week to refactor it a bit and tried to decouple some groups of classes and introduced unit tests. As I can not test ...
0
votes
1answer
761 views

Jetty: adding <resource-env-ref> programmatically

I have a standalone application with embedded Jetty and Wicket. I'd like to use CDI for injection. So I've found http://docs.jboss.org/weld/reference/latest/en-US/html/environments.html#d0e5286 and ...
3
votes
1answer
3k views

gwt jetty jndi lookup fails

I am using gwt with jetty but want use jndi for datasource so followed the documentation for eclipse gwt jetty jndi and did below to run my gwt app Run my gwt app with following options in eclipse ...
6
votes
4answers
2k views

Running web app in both Jetty and Tomcat

I have a web app which in production I run on Tomcat. It uses the MySQL connector, however it is not bundled up with the war, rather it is included under Tomcat's common lib directory, so that I can ...
6
votes
3answers
4k 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" /> ...
1
vote
1answer
608 views

Close Jetty DataSources when the web application context is destroyed

I'm using the maven-jetty-plugin to run a web application in development mode. Also, I configure a c3p0 JNDI DataSource in jetty-env.xml: <?xml version="1.0"?> <!DOCTYPE Configure PUBLIC ...
0
votes
1answer
856 views

ClassCastException with jetty and jpa

When I try to execute my application based on jersey, guice, and jpa on jetty (7.2.0 or 8.0.0.M1) I get the following error, even if I don't use JNDI. java.lang.ClassCastException: ...
2
votes
1answer
1k 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 ...
3
votes
2answers
4k views

Jetty JNDI error within Maven Jetty Plugin

I am trying to configure a JNDI data source that can be used from an invocation of the Maven Jetty Plugin. I am trying to do this external to the WAR file, so that anyone who might later deploy our ...
2
votes
2answers
3k views

What JNDI environment properties do I use for Jetty?

I'm running jetty-6.1.7 and I've got an ActiveMQConnectionFactory that I'd like to reference in my spring configuration via a JNDITemplate. My jetty.xml configuration is vanilla: <New ...
0
votes
2answers
1k views

Jetty JNDI Java Mail

I am using Jetty 7 with JBoss Seam and have 2 Java Mail Sessions configured, one for support notifications and another for general notifications. The problem I am having appears to be from JBoss Seam ...
2
votes
1answer
7k views

GWT 1.7 - Configuring a DataSource in Jetty (Hosted Mode)

I'm new to GWT (1.7) and tried to establish a connection to my MySQL database from the servlet. Because I got some errors, I googled them and found out, that I have to configure a DataSource in Jetty ...
3
votes
2answers
7k views

How to configure JNDI for Jetty 7.0pre5

Hi I am getting this error when starting up Jetty that uses Mysql Connection Pool. Could someone help me out please? [root@localhost test]# java -DOPTIONS=plus,ext.default -classpath %CLASSPATH% ...
0
votes
1answer
5k views

How should I configure Jetty 7 pre3 to use oracle JDBC source?

All stuff is running under Windows XP Pro SP2/32-bit. I have downloaded Jetty 7 pre3 from ...