Hi, I am building a *.har and deploying. I get "Incomplete Deployment listing" from JBoss
I have jboss-hibernate.deployer with META-INF/jboss-service.xml as
Quote:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE server>
<server>
<!--
Defines the HAR (Hibernate ARchive) deployer service. See the javadocs for
org.jboss.hibernate.har.HARDeployer for more info.
-->
<mbean code="org.jboss.hibernate.har.HARDeployer" name="jboss.har:service=HARDeployer">
<attribute name="ValidateDTDs">false</attribute>
</mbean>
</server>
Jboss version: 4.0.1 RC1
Hibernate version: 2.1.1
Mapping documents:Quote:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class name="com.vero.vas.domain.Vehicle"
table="VEHICLE">
<id name="id"
column="id"
type="java.lang.Long">
<generator class="identity" />
</id>
<property name="tokenId"
type="java.lang.Long"
update="true"
insert="true"
column="token_id" />
<property name="vin"
type="java.lang.String"
update="true"
insert="true"
column="vin" />
</class>
</hibernate-mapping>
Code between sessionFactory.openSession() and session.close():Full stack trace of any exception that occurs: No Exception but I get this in JBoss console
Quote:
13:43:18,077 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
Packages waiting for a deployer:
org.jboss.deployment.DeploymentInfo@d3413842 { url=file:/E:/Java/jboss-4.0.1RC1/
server/jbpm/deploy/simple.har }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/E:/Java/jboss-4.0.1RC1/server/jbpm/deploy/simple.har
altDD: null
lastDeployed: 1101152572981
lastModified: 1101151479138
mbeans:
Incompletely deployed packages:
org.jboss.deployment.DeploymentInfo@d3413842 { url=file:/E:/Java/jboss-4.0.1RC1/
server/jbpm/deploy/simple.har }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/E:/Java/jboss-4.0.1RC1/server/jbpm/deploy/simple.har
altDD: null
lastDeployed: 1101152572981
lastModified: 1101151479138
mbeans:
Name and version of the database you are using: MySQL 4.1.7 Windows
The generated SQL (show_sql=true):
Debug level Hibernate log excerpt:
Thank you in advance for your help,
Ted