Good morning,
I am using hibernate 3.2.6.ga with hibernate-annotations 3.3.1.ga, hibernate-commons-annotations 3.3.0.ga, hibernate-entitymanager 3.3.2.ga.
Mapping is done within the entities .. and yes I am importing javax.persistence.Entity for each.
I have several projects set up in my workspace:
JAR project with my annotated classes. this also contains META-INF/peristence.xml
From the WEB project a servlet calls business logic in one of the JARs which uses then the JAR with the annotated classes to persist data.
If I create an EAR which contains the WEB project and all JAR projects and deploy it on websphere 6.1 all works fine, i.e. the annotated classes are found and used. See code snippet#1 below.
If I create an EAR which contains the WEB project and all JAR projects except of the JAR with the annotated classes (which is separatly shared), then the annotated classes seem to be filtered by the AbstractJarVisitor, but afterwards not processed by the AnnotationConfiguration. See code snippet#2.
The problem is I have to share the annotated classes between several EARs.
My questions:
Do annotated classes in separate JARs not work?
What could be a workaround? (Everything in one EAR is not an option)
Thank you very much
Oliver
code snippet#1: Everything in one EAR works fine
Code:
2008-Jul-22 18:04:57 INFO [org.hibernate.cfg.annotations.Version ] Hibernate Annotations 3.3.1.GA
2008-Jul-22 18:04:57 INFO [org.hibernate.cfg.Environment ] Hibernate 3.2.6
2008-Jul-22 18:04:57 INFO [org.hibernate.cfg.Environment ] hibernate.properties not found
2008-Jul-22 18:04:57 INFO [org.hibernate.cfg.Environment ] Bytecode provider name : cglib
2008-Jul-22 18:04:57 INFO [org.hibernate.cfg.Environment ] using JDK 1.4 java.sql.Timestamp handling
2008-Jul-22 18:04:57 INFO [org.hibernate.ejb.Version ] Hibernate EntityManager 3.3.2.GA
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Look up for persistence unit: websphere
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Analysing persistence.xml: file:/D:/Data/Rad/shared/workspace/BJ4_1_ResearchInterfaceDomainJava/target/classes/META-INF/persistence.xml
2008-Jul-22 18:04:57 DEBUG [org.hibernate.util.DTDEntityResolver ] trying to resolve system-id [http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd]
2008-Jul-22 18:04:57 DEBUG [org.hibernate.cfg.EJB3DTDEntityResolver ] recognized EJB3 ORM namespace; attempting to resolve on classpath under org/hibernate/ejb
2008-Jul-22 18:04:57 DEBUG [org.hibernate.cfg.EJB3DTDEntityResolver ] located [http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd] in classpath
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.PersistenceXmlLoader] Persistent Unit name from persistence.xml: ehcache
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.PersistenceXmlLoader] Persistent Unit name from persistence.xml: ora_ehcache
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.PersistenceXmlLoader] Persistent Unit name from persistence.xml: websphere
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.Ejb3Configuration ] PersistenceMetadata [
name: ehcache
jtaDataSource: null
nonJtaDataSource: null
transactionType: RESOURCE_LOCAL
provider: org.hibernate.ejb.HibernatePersistence
classes[
]
packages[
]
mappingFiles[
]
jarFiles[
]
hbmfiles: 0
properties[
hibernate.default_schema: DAO_DIST
hibernate.connection.driver_class: org.hsqldb.jdbcDriver
hibernate.cache.provider_class: net.sf.ehcache.hibernate.SingletonEhCacheProvider
hibernate.dialect: org.hibernate.dialect.HSQLDialect
hibernate.cache.use_query_cache: true
hibernate.cache.use_second_level_cache: true
hibernate.format_sql: true
hibernate.generate_statistics: true
hibernate.connection.username: sa
hibernate.connection.datasource: java:comp/env/jdbc/ds_rcp
hibernate.hbm2ddl.auto: create
hibernate.archive.autodetection: class, hbm
hibernate.connection.url: jdbc:hsqldb:hsql://localhost
hibernate.show_sql: true
]]
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.Ejb3Configuration ] PersistenceMetadata [
name: ora_ehcache
jtaDataSource: null
nonJtaDataSource: null
transactionType: RESOURCE_LOCAL
provider: org.hibernate.ejb.HibernatePersistence
classes[
]
packages[
]
mappingFiles[
]
jarFiles[
]
hbmfiles: 0
properties[
hibernate.connection.autocommit: false
hibernate.default_schema: DAO_DIST
hibernate.connection.driver_class: oracle.jdbc.driver.OracleDriver
hibernate.cache.provider_class: net.sf.ehcache.hibernate.SingletonEhCacheProvider
hibernate.cache.use_query_cache: true
hibernate.dialect: com.ubs.swidBJ4.v1.dbaccess.common.Oracle10gSeqFixDialect
hibernate.cache.use_second_level_cache: true
hibernate.format_sql: true
hibernate.generate_statistics: true
hibernate.use_outer_join: true
hibernate.connection.datasource: java:comp/env/jdbc/ds_rcp
hibernate.hbm2ddl.auto: validate
hibernate.archive.autodetection: class, hbm
hibernate.show_sql: true
]]
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.Ejb3Configuration ] PersistenceMetadata [
name: websphere
jtaDataSource: null
nonJtaDataSource: null
transactionType: RESOURCE_LOCAL
provider: org.hibernate.ejb.HibernatePersistence
classes[
com.ubs.swidBJ4.v1.bo.ChangeEventBO ]
packages[
]
mappingFiles[
]
jarFiles[
]
hbmfiles: 0
properties[
hibernate.connection.autocommit: false
hibernate.default_schema: DAO_DIST
transaction.auto_close_session: true
hibernate.transaction.manager_lookup_class: org.hibernate.transaction.WebSphereExtendedJTATransactionLookup
hibernate.dialect: com.ubs.swidBJ4.v1.dbaccess.common.Oracle10gSeqFixDialect
hibernate.format_sql: true
hibernate.use_outer_join: true
hibernate.connection.datasource: java:comp/env/jdbc/ds_rcp
hibernate.hbm2ddl.auto: validate
hibernate.archive.autodetection: class, hbm
hibernate.show_sql: true
hibernate.transaction.factory_class: org.hibernate.transaction.CMTTransactionFactory
current_session_context_class: jta
]]
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.JarVisitorFactory] JAR URL from URL Entry: file:/D:/Data/Rad/shared/workspace/BJ4_1_ResearchInterfaceDomainJava/target/classes/META-INF/persistence.xml >> file:/D:/Data/Rad/shared/workspace/BJ4_1_ResearchInterfaceDomainJava/target/classes/
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Detect class: true; detect hbm: true
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Searching mapped entities in jar/par: file:/D:/Data/Rad/shared/workspace/BJ4_1_ResearchInterfaceDomainJava/target/classes/
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.BaseBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ChangeEventBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ChangeEventBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ChildReferenceDataBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ChildReferenceDataBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ChildReferenceDataId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ChildReferenceDataId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ComponentBinaryBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ComponentBinaryBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ComponentBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ComponentBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionAttachmentBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionAttachmentBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionAttachmentId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionAttachmentId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionComponentBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionComponentBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionReferenceBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionReferenceBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionReferenceId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionReferenceId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionSetBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionSetBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionTypeBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionTypeBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.DataFeedBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.DisclosureDataBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.DisclosureDataBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.DisclosureStatementBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.DisclosureStatementBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.DisclosureStatementId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.DisclosureStatementId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindChangeEventBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindChildReferenceDataBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindComponentBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionAttachmentBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionComponentBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionReferenceBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionSetBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDataFeedBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDisclosureDataBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDisclosureStatementBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindFactory
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationSetBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationTypeBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRatingBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRatingMetaBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindReferenceDataBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindReferenceDetailBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRelatedSecurityBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRestrictionBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRestrictionMetaBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseDetailBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseReferenceBO_access
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_MungeAdapter
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationContributionBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationContributionBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationContributionId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationContributionId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationSetBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationSetBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationTypeBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationTypeBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RatingBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RatingBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RatingId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RatingId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RatingMetaBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RatingMetaBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RatingMetaId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RatingMetaId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ReferenceDataBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ReferenceDataBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ReferenceDataId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ReferenceDataId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ReferenceDetailBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ReferenceDetailBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ReferenceDetailId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ReferenceDetailId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RelatedSecurityBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RelatedSecurityBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RelatedSecurityId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RelatedSecurityId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RestrictionBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RestrictionBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RestrictionMetaBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RestrictionMetaBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseDetailBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseDetailBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseDetailId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseDetailId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseReferenceBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseReferenceBO
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseReferenceId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseReferenceId
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.domain.test.AllTestsSuite
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.domain.test.JibxTest$1
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.domain.test.JibxTest$2
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.domain.test.JibxTest
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.domain.test.RiTestInterface
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.domain.test.SchemaValidationTest$1
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.domain.test.SchemaValidationTest$2
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.domain.test.SchemaValidationTest
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.interf.ContentImportInterface
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.interf.EventManagerInterface
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.interf.ResearchFassadeInterface
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.jibx.adaptor.JibxAdaptor
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Detect class: true; detect hbm: true
2008-Jul-22 18:04:57 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Creating Factory: websphere
2008-Jul-22 18:04:57 WARN [org.hibernate.ejb.Ejb3Configuration ] Overriding hibernate.transaction.factory_class is dangerous, this might break the EJB3 specification implementation
2008-Jul-22 18:04:57 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Execute first pass mapping processing
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Process hbm files
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Process annotated classes
2008-Jul-22 18:04:58 INFO [org.hibernate.cfg.AnnotationBinder ] Binding entity from annotated class: com.ubs.swidBJ4.v1.bo.ChangeEventBO
2008-Jul-22 18:04:58 INFO [org.hibernate.cfg.annotations.QueryBinder ] Binding Named query: emptyTableChangeEventBO => DELETE ChangeEventBO
2008-Jul-22 18:04:58 INFO [org.hibernate.cfg.annotations.QueryBinder ] Binding Named query: fetchAllChangeEventBO => select o from ChangeEventBO o order by o.id asc
2008-Jul-22 18:04:58 INFO [org.hibernate.cfg.annotations.QueryBinder ] Binding Named query: fetchNextGroupChangeEventBO => from ChangeEventBO o where o.fetchedDate is null and o.groupId in (select min(o2.groupId) from ChangeEventBO o2 where o2.fetchedDate is null)
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.Ejb3Column ] Binding column DTYPE unique false
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.annotations.EntityBinder ] Import with entity name=ChangeEventBO
2008-Jul-22 18:04:58 INFO [org.hibernate.cfg.annotations.EntityBinder ] Bind entity com.ubs.swidBJ4.v1.bo.ChangeEventBO on table IMPORT_CONTROLLING_T
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.AnnotationBinder ] Processing com.ubs.swidBJ4.v1.bo.ChangeEventBO property annotation
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.AnnotationBinder ] Processing com.ubs.swidBJ4.v1.bo.ChangeEventBO field annotation
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.AnnotationBinder ] Processing annotations of com.ubs.swidBJ4.v1.bo.ChangeEventBO.id
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.Ejb3Column ] Binding column id unique false
2008-Jul-22 18:04:58 DEBUG [org.hibernate.cfg.AnnotationBinder ] id is an id
code snippet#2: EAR with shared JAR does not work
[code]2008-Jul-22 17:48:08 INFO [org.hibernate.cfg.annotations.Version ] Hibernate Annotations 3.3.1.GA
2008-Jul-22 17:48:08 INFO [org.hibernate.cfg.Environment ] Hibernate 3.2.6
2008-Jul-22 17:48:08 INFO [org.hibernate.cfg.Environment ] hibernate.properties not found
2008-Jul-22 17:48:08 INFO [org.hibernate.cfg.Environment ] Bytecode provider name : cglib
2008-Jul-22 17:48:08 INFO [org.hibernate.cfg.Environment ] using JDK 1.4 java.sql.Timestamp handling
[7/22/08 17:48:08:239 MEST] 00000010 TCPPort E TCPC0003E: TCP Channel MIGRATED_HTTP_TRANSPORT_CHANNEL_TCP_*:9084 initialization failed. The socket bind failed for host * and port 9084. The port may already be in use.
2008-Jul-22 17:48:08 INFO [org.hibernate.ejb.Version ] Hibernate EntityManager 3.3.2.GA
2008-Jul-22 17:48:08 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Look up for persistence unit: websphere
2008-Jul-22 17:48:08 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Analysing persistence.xml: wsjar:file:/app/WAS/dyn/was61/6.1.0.13.0/profiles/Node_Mit33/config/cells/oluCEMit33svbambill/UBS/cl_build_bj4_libs/BJ4_1_ResearchInterfaceDomainJava.jar!/META-INF/persistence.xml
2008-Jul-22 17:48:12 DEBUG [org.hibernate.util.DTDEntityResolver ] trying to resolve system-id [http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd]
2008-Jul-22 17:48:12 DEBUG [org.hibernate.cfg.EJB3DTDEntityResolver ] recognized EJB3 ORM namespace; attempting to resolve on classpath under org/hibernate/ejb
2008-Jul-22 17:48:12 DEBUG [org.hibernate.cfg.EJB3DTDEntityResolver ] located [http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd] in classpath
[7/22/08 17:48:13:258 MEST] 00000013 TCPPort E TCPC0003E: TCP Channel MIGRATED_HTTP_TRANSPORT_CHANNEL_TCP_*:9084 initialization failed. The socket bind failed for host * and port 9084. The port may already be in use.
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.PersistenceXmlLoader] Persistent Unit name from persistence.xml: ehcache
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.PersistenceXmlLoader] Persistent Unit name from persistence.xml: ora_ehcache
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.PersistenceXmlLoader] Persistent Unit name from persistence.xml: websphere
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.Ejb3Configuration ] PersistenceMetadata [
name: ehcache
jtaDataSource: null
nonJtaDataSource: null
transactionType: RESOURCE_LOCAL
provider: org.hibernate.ejb.HibernatePersistence
classes[
]
packages[
]
mappingFiles[
]
jarFiles[
]
hbmfiles: 0
properties[
hibernate.default_schema: RCP_DIST
hibernate.connection.driver_class: org.hsqldb.jdbcDriver
hibernate.cache.provider_class: net.sf.ehcache.hibernate.SingletonEhCacheProvider
hibernate.dialect: org.hibernate.dialect.HSQLDialect
hibernate.cache.use_query_cache: true
hibernate.cache.use_second_level_cache: true
hibernate.format_sql: true
hibernate.generate_statistics: true
hibernate.connection.username: sa
hibernate.connection.datasource: java:comp/env/jdbc/ds_rcp
hibernate.hbm2ddl.auto: create
hibernate.archive.autodetection: class, hbm
hibernate.connection.url: jdbc:hsqldb:hsql://localhost
hibernate.show_sql: true
]]
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.Ejb3Configuration ] PersistenceMetadata [
name: ora_ehcache
jtaDataSource: null
nonJtaDataSource: null
transactionType: RESOURCE_LOCAL
provider: org.hibernate.ejb.HibernatePersistence
classes[
]
packages[
]
mappingFiles[
]
jarFiles[
]
hbmfiles: 0
properties[
hibernate.connection.autocommit: false
hibernate.default_schema: RCP_DIST
hibernate.connection.driver_class: oracle.jdbc.driver.OracleDriver
hibernate.cache.provider_class: net.sf.ehcache.hibernate.SingletonEhCacheProvider
hibernate.cache.use_query_cache: true
hibernate.dialect: com.ubs.swidBJ4.v1.dbaccess.common.Oracle10gSeqFixDialect
hibernate.cache.use_second_level_cache: true
hibernate.format_sql: true
hibernate.generate_statistics: true
hibernate.use_outer_join: true
hibernate.connection.datasource: java:comp/env/jdbc/ds_rcp
hibernate.hbm2ddl.auto: validate
hibernate.archive.autodetection: class, hbm
hibernate.show_sql: true
]]
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.Ejb3Configuration ] PersistenceMetadata [
name: websphere
jtaDataSource: null
nonJtaDataSource: null
transactionType: RESOURCE_LOCAL
provider: org.hibernate.ejb.HibernatePersistence
classes[
com.ubs.swidBJ4.v1.bo.ChangeEventBO ]
packages[
]
mappingFiles[
]
jarFiles[
]
hbmfiles: 0
properties[
hibernate.connection.autocommit: false
hibernate.default_schema: RCP_DIST
transaction.auto_close_session: true
hibernate.transaction.manager_lookup_class: org.hibernate.transaction.WebSphereExtendedJTATransactionLookup
hibernate.dialect: com.ubs.swidBJ4.v1.dbaccess.common.Oracle10gSeqFixDialect
hibernate.format_sql: true
hibernate.use_outer_join: true
hibernate.connection.datasource: java:comp/env/jdbc/ds_rcp
hibernate.hbm2ddl.auto: validate
hibernate.archive.autodetection: class, hbm
hibernate.show_sql: true
hibernate.transaction.factory_class: org.hibernate.transaction.CMTTransactionFactory
current_session_context_class: jta
]]
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.JarVisitorFactory] JAR URL from URL Entry: wsjar:file:/app/WAS/dyn/was61/6.1.0.13.0/profiles/Node_Mit33/config/cells/oluCEMit33svbambill/UBS/cl_build_bj4_libs/BJ4_1_ResearchInterfaceDomainJava.jar!/META-INF/persistence.xml >> file:/app/WAS/dyn/was61/6.1.0.13.0/profiles/Node_Mit33/config/cells/oluCEMit33svbambill/UBS/cl_build_bj4_libs/BJ4_1_ResearchInterfaceDomainJava.jar
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Detect class: true; detect hbm: true
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Searching mapped entities in jar/par: file:/app/WAS/dyn/was61/6.1.0.13.0/profiles/Node_Mit33/config/cells/oluCEMit33svbambill/UBS/cl_build_bj4_libs/BJ4_1_ResearchInterfaceDomainJava.jar
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.BaseBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ChangeEventBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ChangeEventBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ChildReferenceDataBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ChildReferenceDataBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ChildReferenceDataId
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ChildReferenceDataId
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ComponentBinaryBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ComponentBinaryBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ComponentBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ComponentBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionAttachmentBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionAttachmentBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionAttachmentId
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionAttachmentId
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionComponentBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionComponentBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionReferenceBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionReferenceBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionReferenceId
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionReferenceId
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionSetBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionSetBO
2008-Jul-22 17:48:13 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ContributionTypeBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ContributionTypeBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.DataFeedBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.DisclosureDataBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.DisclosureDataBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.DisclosureStatementBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.DisclosureStatementBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.DisclosureStatementId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.DisclosureStatementId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindChangeEventBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindChangeEventBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindChildReferenceDataBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindChildReferenceDataBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindComponentBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindComponentBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionAttachmentBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionAttachmentBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionComponentBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionComponentBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionReferenceBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionReferenceBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionSetBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindContributionSetBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDataFeedBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDataFeedBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDisclosureDataBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDisclosureDataBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDisclosureStatementBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindDisclosureStatementBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindFactory
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationSetBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationSetBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationTypeBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindPublicationTypeBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRatingBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRatingBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRatingMetaBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRatingMetaBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindReferenceDataBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindReferenceDataBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindReferenceDetailBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindReferenceDetailBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRelatedSecurityBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRelatedSecurityBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRestrictionBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRestrictionBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRestrictionMetaBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindRestrictionMetaBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseDetailBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseDetailBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseReferenceBO_access1
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_BMDatafeed_bindUniverseReferenceBO_access2
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.JiBX_MungeAdapter
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationContributionBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationContributionBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationContributionId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationContributionId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationSetBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationSetBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.PublicationTypeBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.PublicationTypeBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RatingBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RatingBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RatingId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RatingId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RatingMetaBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RatingMetaBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RatingMetaId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RatingMetaId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ReferenceDataBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ReferenceDataBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ReferenceDataId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ReferenceDataId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ReferenceDetailBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ReferenceDetailBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.ReferenceDetailId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.ReferenceDetailId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RelatedSecurityBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RelatedSecurityBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RelatedSecurityId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RelatedSecurityId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RestrictionBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RestrictionBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.RestrictionMetaBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.RestrictionMetaBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseDetailBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseDetailBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseDetailId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseDetailId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseReferenceBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseReferenceBO
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.bo.UniverseReferenceId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Java element filter matched for com.ubs.swidBJ4.v1.bo.UniverseReferenceId
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.interf.ContentImportInterface
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.interf.EventManagerInterface
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.interf.ResearchFassadeInterface
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.packaging.AbstractJarVisitor] Filtering: com.ubs.swidBJ4.v1.jibx.adaptor.JibxAdaptor
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Detect class: true; detect hbm: true
2008-Jul-22 17:48:14 DEBUG [org.hibernate.ejb.Ejb3Configuration ] Creating Factory: websphere
2008-Jul-22 17:48:14 WARN [org.hibernate.ejb.Ejb3Configuration ] Overriding hibernate.transaction.factory_class is dangerous, this might break the EJB3 specification implementation
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Execute first pass mapping processing
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Process hbm files
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Process annotated classes
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] processing fk mappings (*ToOne and JoinedSubclass)
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing extends queue
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing collection mappings
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing native query and ResultSetMapping mappings
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing association property references
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing foreign key constraints
2008-Jul-22 17:48:15 INFO [org.hibernate.cfg.AnnotationConfiguration ] Hibernate Validator not found: ignoring
2008-Jul-22 17:48:15 WARN [org.hibernate.ejb.Ejb3Configuration ] hibernate.connection.autocommit = false break the EJB3 specification
2008-Jul-22 17:48:15 DEBUG [org.hibernate.ejb.util.NamingHelper ] No JNDI name configured for binding Ejb3Configuration
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Validator not present in classpath, ignoring event listener registration
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.search.SearchConfiguration ] Search not present in classpath, ignoring event listener registration
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] Preparing to build session factory with filters : {}
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Execute first pass mapping processing
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Process hbm files
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] Process annotated classes
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.AnnotationConfiguration ] processing fk mappings (*ToOne and JoinedSubclass)
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing extends queue
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing collection mappings
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing native query and ResultSetMapping mappings
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing association property references
2008-Jul-22 17:48:15 DEBUG [org.hibernate.cfg.Configuration ] processing foreign key constraints
2008-Jul-22 17:48:15 INFO [org.hibernate.util.NamingHelper ] JNDI InitialContext properties:{}
2008-Jul-22 17:48:15 INFO [org.hibernate.connection.DatasourceConnectionProvider] Using datasource: java:comp/env/jdbc/ds_rcp
2008-Jul-22 17:48:15 INFO [org.hibernate.cfg.SettingsFactory ] RDBMS: Oracle, version: Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP and Data Mining options
2008-Jul-22 17:48:15 INFO [org.hibernate.cfg.SettingsFactory ] JDBC driver: Oracle JDBC driver, version: 10.2.0.3.0
2008-Jul-22 17:48:16 INFO [org.hibernate.dialect.Dialect ] Using dialect: com.ubs.swidBJ4.v1.dbaccess.common.Oracle10gSeqFixDialect
2008-Jul-22 17:48:16 INFO [org.hibernate.transaction.TransactionFactoryFactory] Transaction strategy: org.hibernate.transaction.CMTTransactionFactory
2008-Jul-22 17:48:16 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.WebSphereExtendedJTATransactionLookup
2008-Jul-22 17:48:16 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] instantiated TransactionManagerLookup
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Automatic flush during beforeCompletion(): disabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Automatic session close at end of transaction: disabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] JDBC batch size: 15
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] JDBC batch updates for versioned data: disabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Scrollable result sets: enabled
2008-Jul-22 17:48:16 DEBUG [org.hibernate.cfg.SettingsFactory ] Wrap result sets: disabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] JDBC3 getGeneratedKeys(): disabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Connection release mode: auto
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Default schema: RCP_DIST
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Default batch fetch size: 1
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Generate SQL with comments: disabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Order SQL updates by primary key: disabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Order SQL inserts for batching: disabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
2008-Jul-22 17:48:16 INFO [org.hibernate.hql.ast.ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] Query language substitutions: {}
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory ] JPA-QL strict compliance: enabled
2008-Jul-22 17:48:16 INFO [org.hibernate.cfg.SettingsFactory