Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I built a Java EE project in Netbeans much like their AffableBean tutorial, and when I try to deploy my WAR on a remote glassfish server, my db resources defined in glassfish-resources.xml are not created (connection pool and jdbc resource).

I look into the "build" directory of my project on my local hard drive and don't see the glassfish-resources.xml file anywhere. (It should be there, right?)

I see this bug http://netbeans.org/bugzilla/show_bug.cgi?id=200354 indicating that netbeans developers are aware of glassfish-resources not being packaged in some projects, but I'm not clear on what the resolution is/will be.

I see this question How to create a jms Topic and TopicConnectionFactory programatically?, with a great answer saying I should move glassfish-resrouces.xml into the Configuration Files folder of the project - but the IDE doesn't let me do that.

I see this excellent blog post https://blogs.oracle.com/JagadishPrasath/entry/application_scoped_resources_in_glassfish describing where the glassfish-resources.xml files should be for various purposes, but I don't know how to move my glassfish-resources.xml from the Server Resources folder using Netbeans.

My question is how do I get my db resources defined when I deploy to a remote server? Is the information in the WAR somewhere and I'm not deploying correctly? I was planning to create the connection pool and jdbc resource using the glassfish admin console, but I'd rather it be part of the WAR.

EDIT: I ended up building the connection pool and jdbc resource using the Glassfish admin console, and everything seems to be working well. I got no explanation from a similar post on a netbeans forum.

thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.