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

I'm having this strange error with JBoss. It's strange because it's looking for some old projects that aren't even related to my current project and are also deleted from my workspace in eclipse.

When I try to get the current project to run, I get this error:

DEPLOYMENTS MISSING DEPENDENCIES:
  Deployment "jboss.j2ee:ear=BibliotheekEAR.ear,jar=BibliotheekEJB.jar,name=Bibliotheek,service=EJB3" is missing the following dependencies:
    Dependency "" (should be in state "Described", but is actually in state "** UNRESOLVED Demands 'persistence.unit:unitName=BibliotheekEAR.ear/BibliotheekJPA.jar#BibliotheekJPA' **")
  Deployment "jboss.j2ee:ear=BibliotheekEAR.ear,jar=BibliotheekEJB.jar,name=Bibliotheek,service=EJB3_endpoint" is missing the following dependencies:
    Dependency "jboss.j2ee:ear=BibliotheekEAR.ear,jar=BibliotheekEJB.jar,name=Bibliotheek,service=EJB3" (should be in state "Configured", but is actually in state "PreInstall")

DEPLOYMENTS IN ERROR:
  Deployment "" is in error due to the following reason(s): ** UNRESOLVED Demands 'persistence.unit:unitName=BibliotheekEAR.ear/BibliotheekJPA.jar#BibliotheekJPA' **
  Deployment "persistence.unit:unitName=BibliotheekEAR.ear/BibliotheekJPA.jar#BibliotheekJPA" is in error due to the following reason(s): org.hibernate.HibernateException: Hibernate Dialect must be explicitly set

Any ideas?

I have deleted all these projects, so I don't know why it's looking for them...

share|improve this question

2 Answers

up vote 1 down vote accepted

I have deleted all these projects, so I don't know why it's looking for them

Deleted from where? Maybe double check that they aren't any remaining traces under the deploy or tmp directories of the server configuration you're using.

See also

share|improve this answer
Hey, do you mean I should delete everything inside C:\JBoss\server\web\deploy and C:\JBoss\server\web\conf ? I'm not recognizing any names from my old projects (and I have indeed only deleted those from eclipse, I thought that would do the trick, didn't know they got copied into JBoss) – Sled Jul 30 '10 at 0:18
@Sled No, not everything under deploy, just the potential culprits. However, you can safely delete everything under tmp (do it). And I didn't mention conf. – Pascal Thivent Jul 30 '10 at 0:33
I'm sorry, I mean to type tmp, anyway: I restored my server folder from the original JBoss rar, and emptied tmp, that did it. Thank you for your help! – Sled Jul 30 '10 at 0:47

It seems that you haven't set the Hibernate database dialect property correctly for the database your using in your application. Try setting your database dialect in your persistence.xml file like this:

<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>

In case you're using MySQL. Here is a list of the most common hibernate dialects used.

share|improve this answer
I noticed I'm also getting the (same) error when I'm not running any projects and don't use a database. For some reason JBoss is looking for those BibliotheekJPA.jar and other Bibliotheek***** files when starting, up. Any idea why this would be? Thank you! – Sled Jul 30 '10 at 0:07
Make sure you've deleted all those files from your deploy directory, review every .ear, .war and .jar file, also look under your tmp directory. – StudiousJoseph Jul 30 '10 at 0:18

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.