Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

JBoss claims that my persistence unit is installed already. But the server just started! Since there's only one persistence.xml file in the .war, I can't see what the problem is.

17:53:14,484 ERROR [AbstractKernelController] Error installing to Real: name=vfsfile:/C:/clicktime/inspirion/clicktime/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_5.1_Runtime_Server1328796645796/deploy/clicktime5.war/ state=PreReal mode=Manual requiredState=Real org.jboss.deployers.spi.DeploymentException: Error deploying: persistence.unit:unitName=#clicktime5

Caused by: java.lang.IllegalStateException: persistence.unit:unitName=#clicktime5 is already installed.

Update:

I see something interesting now. Mojarra gets run twice: once for /clicktime, once for /clicktime5, as if I'd be deploying two different things on my server.

share|improve this question

1 Answer

up vote 3 down vote accepted

This is most probably a human error. JBoss does not deploy anything twice unless they are two difference instances. You probably have another deployment with that name already. Take a good look at the server.log to find more detail.

share|improve this answer
That was precisely what was happening. I deployed the same project twice: once thru Eclipse, and once as a .war file in the deploy directory. – nes1983 Mar 24 '12 at 18:27

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.