| Author |
war file failed to deploy
|
sam White
Ranch Hand
Joined: Feb 18, 2011
Posts: 204
|
|
Hello,
I have built a simple war applicaiton, with maven3+spring3+jpa2+hibernate3.6.5-final+glassfish 3.1.
When I copy the war file to the autodeploy directory in glassfish 3.1, it failed with the following error exception:
Can anyone tell me how to resolve the above error?
Any suggestion would be very much appreciated.
Thanks
Sam
|
 |
Mahesh Panchananam
Greenhorn
Joined: Jun 30, 2011
Posts: 18
|
|
Java Archive Conflict
javax.enterprise.system.tools.admin.org.glassfish.deployment.admin|_ThreadID=57;_ThreadName=Thread-1;|Exception while invoking class com.sun.enterprise.web.WebApplication start method
java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'guestController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private guest.GuestDao guest.GuestController.guestDao; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'guestDao': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/context/applicationContext-persistence.xml]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [ PersistenceUnit: persistenceUnit] Unable to build EntityManagerFactory
at com.sun.enterprise.web.WebApplication.start(WebApplication.java:130)
at org.glassfish.internal.data.EngineRef.start(EngineRef
If you observe the last few lines, the EntityManagerFactory is not getting initialized properly. This can be resolved if you add proper java archives files.
Rgds
Mahesh PS
|
|
 |
Sean Clark
Rancher
Joined: Jul 15, 2009
Posts: 377
|
|
Hey,
As your exception states:
Caused by: org.hibernate.HibernateException: Errors in named queries: Guest.findBySingingdate
This is where the error is being generated from, I would check this named query.
Sean
|
I love this place!
|
 |
 |
|
|
subject: war file failed to deploy
|
|
|