-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: Hibernate 3.1 final & Annotation 3.1beta7
PostPosted: Thu Dec 15, 2005 10:42 am 
Newbie

Joined: Thu Dec 15, 2005 10:18 am
Posts: 3
Location: São Paulo, Brasil
Using Hibernate 3.1RC2 + Hibernate Annotation 3.1beta4 works fine (just mapping)

another question is, how don't work CascadeType.PERSIST (3.1beta4 or 3.1beta7)!?!
if i try to use cascade = {CascadeType.PERSIST, CascadeType.REMOVE, CascadeType.REFRESH, CascadeType.MERGE}
not work like CascadeType.ALL

Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp

Hibernate version: 3.1 final

Mapping documents:
one example (unidirectional):

@Entity
public class Profile implements Serializable{
private long id;
private Set<User> user = new HashSet<User>();
private String profileName;


@OneToMany(cascade = CascadeType.ALL)
public Set<User> getUser() {
return this.user;
}
}



Code between sessionFactory.openSession() and session.close():

private static final Logger log = Logger.getLogger(HibernateUtil.class);

private static Configuration configuration;

private static SessionFactory sessionFactory;

private static final ThreadLocal<Session> threadSession = new ThreadLocal<Session>();

private static final ThreadLocal<Transaction> threadTransaction = new ThreadLocal<Transaction>();

private static final ThreadLocal<Interceptor> threadInterceptor = new ThreadLocal<Interceptor>();

static {
try {
log.info("Criando configuration...");
configuration = new AnnotationConfiguration().configure();
log.info("Criando sessionFactory...");
sessionFactory = configuration.buildSessionFactory();
log.info("configuration e sessionFactory criadas.");
} catch (Throwable ex) {
log.error("Erro ao criar sessionFactory",ex);
throw new ExceptionInInitializerError(ex);
}
}

public static void beginTransaction() {
Transaction tx = threadTransaction.get();

if (tx == null) {
log.info("Iniciando nova transacao...");
tx = getSession().beginTransaction();
threadTransaction.set(tx);
log.info("Transacao iniciada com sucesso.");
}
}


public static void closeSession() {
Session session = (Session)threadSession.get();
threadSession.set(null);
threadTransaction.set(null);
if (session != null && session.isOpen()) {
log.info("Fechando Session...");
session.close();
log.info("Session fechada.");
}
}



public static Session getSession(){
log.info("Pegando uma Session...");
Session session = (Session)threadSession.get();
if( session == null){
if(getInterceptor() != null){
log.debug("Usando interceptor...");
session = getSessionFactory().openSession(getInterceptor());
}else{
log.debug("Pegando uma nova Session...");
session = getSessionFactory().openSession();
}
threadSession.set(session);
log.info("Session aberta com sucesso.");
}
return session;
}




Full stack trace of any exception that occurs:
No exception, just stop...

Name and version of the database you are using:
Mysql 4.1

The generated SQL (show_sql=true):
don't show anything...

Debug level Hibernate log excerpt:

2005-12-15 12:16:13,220 INFO (HibernateUtil.java:23) - Criando configuration...
2005-12-15 12:16:14,217 INFO (Environment.java:479) - Hibernate 3.1
2005-12-15 12:16:14,226 INFO (Environment.java:509) - hibernate.properties not found
2005-12-15 12:16:14,232 INFO (Environment.java:525) - using CGLIB reflection optimizer
2005-12-15 12:16:14,235 INFO (Environment.java:555) - using JDK 1.4 java.sql.Timestamp handling
2005-12-15 12:16:14,662 INFO (Configuration.java:1286) - configuring from resource: /hibernate.cfg.xml
2005-12-15 12:16:14,663 INFO (Configuration.java:1263) - Configuration resource: /hibernate.cfg.xml
2005-12-15 12:16:14,921 DEBUG (DTDEntityResolver.java:42) - trying to locate http://hibernate.sourceforge.net/hibern ... on-3.0.dtd in classpath under org/hibernate/
2005-12-15 12:16:14,923 DEBUG (DTDEntityResolver.java:56) - found http://hibernate.sourceforge.net/hibern ... on-3.0.dtd in classpath
2005-12-15 12:16:15,273 DEBUG (Configuration.java:1247) - dialect=org.hibernate.dialect.MySQLDialect
2005-12-15 12:16:15,275 DEBUG (Configuration.java:1247) - connection.driver_class=org.gjt.mm.mysql.Driver
2005-12-15 12:16:15,276 DEBUG (Configuration.java:1247) - connection.url=jdbc:mysql://10.0.165.143/Intranet
2005-12-15 12:16:15,277 DEBUG (Configuration.java:1247) - connection.username=root
2005-12-15 12:16:15,277 DEBUG (Configuration.java:1247) - connection.password=
2005-12-15 12:16:15,278 DEBUG (Configuration.java:1247) - hbm2ddl.auto=create
2005-12-15 12:16:15,279 DEBUG (Configuration.java:1247) - hibernate.c3p0.min_size=5
2005-12-15 12:16:15,279 DEBUG (Configuration.java:1247) - hibernate.c3p0.max_size=20
2005-12-15 12:16:15,284 DEBUG (Configuration.java:1247) - hibernate.c3p0.timeout=1800
2005-12-15 12:16:15,285 DEBUG (Configuration.java:1247) - hibernate.c3p0.max_statements=50
2005-12-15 12:16:15,285 DEBUG (Configuration.java:1247) - show_sql=true
2005-12-15 12:16:15,286 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@3ee284 [Attribute: name class value "br.usp.lsi.contact.Party"]
2005-12-15 12:16:15,364 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@8a0d5d [Attribute: name class value "br.usp.lsi.contact.Organization"]
2005-12-15 12:16:15,416 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@13caecd [Attribute: name class value "br.usp.lsi.contact.Person"]
2005-12-15 12:16:15,419 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@1194a4e [Attribute: name class value "br.usp.lsi.contact.identifiers.CPF"]
2005-12-15 12:16:15,617 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@efd552 [Attribute: name class value "br.usp.lsi.contact.identifiers.CNPJ"]
2005-12-15 12:16:15,619 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@10b4b2f [Attribute: name class value "br.usp.lsi.contact.info.Address"]
2005-12-15 12:16:15,624 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@18a7efd [Attribute: name class value "br.usp.lsi.contact.info.ContactInfo"]
2005-12-15 12:16:15,629 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@1971afc [Attribute: name class value "br.usp.lsi.contact.info.CEP"]
2005-12-15 12:16:15,631 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@cdedfd [Attribute: name class value "br.usp.lsi.contact.info.EmailAddress"]
2005-12-15 12:16:15,634 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@bf2d5e [Attribute: name class value "br.usp.lsi.contact.info.InstantMessenger"]
2005-12-15 12:16:15,636 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@df8ff1 [Attribute: name class value "br.usp.lsi.contact.info.PhoneNumber"]
2005-12-15 12:16:15,641 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@1e97676 [Attribute: name class value "br.usp.lsi.contact.info.Ability"]
2005-12-15 12:16:15,644 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@19106c7 [Attribute: name class value "br.usp.lsi.contact.info.Attachment"]
2005-12-15 12:16:15,649 DEBUG (AnnotationConfiguration.java:363) - null<-org.dom4j.tree.DefaultAttribute@1d4c61c [Attribute: name resource value "br/usp/lsi/contact/schedule/WeekSchedule.hbm.xml"]
2005-12-15 12:16:15,650 INFO (Configuration.java:468) - Reading mappings from resource: br/usp/lsi/contact/schedule/WeekSchedule.hbm.xml
2005-12-15 12:16:15,652 DEBUG (DTDEntityResolver.java:42) - trying to locate http://hibernate.sourceforge.net/hibern ... ng-3.0.dtd in classpath under org/hibernate/
2005-12-15 12:16:15,658 DEBUG (DTDEntityResolver.java:56) - found http://hibernate.sourceforge.net/hibern ... ng-3.0.dtd in classpath
2005-12-15 12:16:15,854 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@7bd9f2 [Attribute: name class value "br.usp.lsi.contact.schedule.TimeRange"]
2005-12-15 12:16:15,857 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@1e893df [Attribute: name class value "br.usp.lsi.contact.schedule.Period"]
2005-12-15 12:16:15,859 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@1386000 [Attribute: name class value "br.usp.lsi.security.Profile"]
2005-12-15 12:16:15,865 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@1174b07 [Attribute: name class value "br.usp.lsi.security.Security"]
2005-12-15 12:16:15,868 DEBUG (AnnotationConfiguration.java:379) - null<-org.dom4j.tree.DefaultAttribute@64dc11 [Attribute: name class value "br.usp.lsi.security.User"]
2005-12-15 12:16:15,879 INFO (Configuration.java:1397) - Configured SessionFactory: null
2005-12-15 12:16:15,880 DEBUG (Configuration.java:1398) - properties: {hibernate.connection.password=, java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, sun.boot.library.path=/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/i386, java.vm.version=1.5.0_03-b07, hibernate.connection.username=root, java.vm.vendor=Sun Microsystems Inc., java.vendor.url=http://java.sun.com/, path.separator=:, java.vm.name=Java HotSpot(TM) Client VM, file.encoding.pkg=sun.io, user.country=BR, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/home/markus/work/eclipse3.1/Intranet2, java.runtime.version=1.5.0_03-b07, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, hbm2ddl.auto=create, hibernate.c3p0.max_statements=50, java.endorsed.dirs=/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/endorsed, os.arch=i386, java.io.tmpdir=/tmp, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., os.name=Linux, sun.jnu.encoding=UTF-8, hibernate.c3p0.timeout=1800, java.library.path=/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/i386/client:/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/i386:/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/../lib/i386:/home/markus/jmf/JMF-2.1.1e/lib:/home/markus/jmf/JMF-2.1.1e/lib:, java.specification.name=Java Platform API Specification, java.class.version=49.0, sun.management.compiler=HotSpot Client Compiler, os.version=2.6.11.4-21.8-smp, connection.password=, user.home=/home/markus, user.timezone=Brazil/West, connection.username=root, java.awt.printerjob=sun.print.PSPrinterJob, file.encoding=UTF-8, java.specification.version=1.5, hibernate.c3p0.min_size=5, hibernate.connection.driver_class=org.gjt.mm.mysql.Driver, show_sql=true, user.name=markus, java.class.path=/usr/share/tomcat5/common/lib/naming-factory-dbcp.jar:/usr/share/tomcat5/common/lib/jasper-compiler.jar:/usr/share/tomcat5/common/lib/servlet-api.jar:/usr/share/tomcat5/common/lib/commons-el.jar:/usr/share/tomcat5/common/lib/jasper-compiler-jdt.jar:/usr/share/tomcat5/common/lib/naming-factory.jar:/usr/share/tomcat5/common/lib/jasper-runtime.jar:/usr/share/tomcat5/common/lib/jsp-api.jar:/usr/share/tomcat5/common/lib/naming-resources.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/classes:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/ant-1.6.5.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/ant-antlr-1.6.5.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/ant-junit-1.6.5.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/ant-launcher-1.6.5.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/antlr-2.7.5H3.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/ant-swing-1.6.5.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/asm.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/asm-attrs.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/c3p0-0.9.0.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/cglib-2.1.2.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/cleanimports.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/commons-collections-2.1.1.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/commons-logging.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/commons-logging-1.0.4.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/dom4j-1.6.1.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/ehcache-1.1.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/jakarta-regexp-1.2.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/javamail.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/jdbc2_0-stdext.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/jlib.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/jta.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/junit-3.8.1.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/log4j-1.2.11.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/mysql_connector_java_3_1_10.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/syndiag2.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/velocity-dep.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/velocity-tools-view.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/webwork-2.2-beta-4.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/xml-apis.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/xwork.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/rife-continuations.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/spring-web.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/spring-context.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/spring-beans.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/spring-core.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/ognl.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/oscore.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/ejb3-persistence.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/hibernate3.jar:/home/markus/work/eclipse3.1/Intranet2/web/WEB-INF/lib/hibernate-annotations.jar, hibernate.show_sql=true, java.vm.specification.version=1.0, java.home=/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre, sun.arch.data.model=32, hibernate.connection.url=jdbc:mysql://10.0.165.143/Intranet, hibernate.dialect=org.hibernate.dialect.MySQLDialect, user.language=pt, java.specification.vendor=Sun Microsystems Inc., hibernate.c3p0.max_size=20, hibernate.cglib.use_reflection_optimizer=true, java.vm.info=mixed mode, sharing, java.version=1.5.0_03, java.ext.dirs=/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/ext, sun.boot.class.path=/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/rt.jar:/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/i18n.jar:/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/jsse.jar:/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/jce.jar:/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/lib/charsets.jar:/usr/lib/jvm/java-1.5.0-sun-1.5.0_03/jre/classes, java.vendor=Sun Microsystems Inc., connection.driver_class=org.gjt.mm.mysql.Driver, file.separator=/, hibernate.hbm2ddl.auto=create, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, sun.io.unicode.encoding=UnicodeLittle, sun.cpu.endian=little, connection.url=jdbc:mysql://10.0.165.143/Intranet, dialect=org.hibernate.dialect.MySQLDialect, sun.cpu.isalist=}
2005-12-15 12:16:15,881 INFO (HibernateUtil.java:25) - Criando sessionFactory...
2005-12-15 12:16:15,882 DEBUG (Configuration.java:1145) - Preparing to build session factory with filters : {}
2005-12-15 12:16:15,882 DEBUG (AnnotationConfiguration.java:189) - Execute first pass mapping processing
2005-12-15 12:16:15,885 DEBUG (AnnotationConfiguration.java:248) - Process hbm files
2005-12-15 12:16:16,279 INFO (HbmBinder.java:265) - Mapping class: br.usp.lsi.contact.schedule.WeekSchedule -> WeekSchedule
2005-12-15 12:16:16,430 DEBUG (HbmBinder.java:1196) - Mapped property: id -> WEEKSCHEDULE_ID
2005-12-15 12:16:16,520 INFO (HbmBinder.java:1332) - Mapping collection: br.usp.lsi.contact.schedule.WeekSchedule.days -> WEEKSCHEDULE_PERIOD
2005-12-15 12:16:16,526 DEBUG (HbmBinder.java:1196) - Mapped property: days
2005-12-15 12:16:16,528 DEBUG (AnnotationConfiguration.java:256) - Process annotated classes
2005-12-15 12:16:16,573 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:16,696 DEBUG (EntityBinder.java:201) - Import with entity name=Party
2005-12-15 12:16:16,702 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.Party on table Party
2005-12-15 12:16:16,979 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.Party per property access
2005-12-15 12:16:17,015 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Party.id
2005-12-15 12:16:17,032 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:17,034 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:17,043 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:17,048 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:17,048 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:17,049 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:17,050 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Party.contacts
2005-12-15 12:16:17,053 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,054 DEBUG (Ejb3Column.java:160) - Binding column contacts unique false
2005-12-15 12:16:17,058 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,099 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,100 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,101 DEBUG (CollectionBinder.java:247) - Collection role: br.usp.lsi.contact.Party.contacts
2005-12-15 12:16:17,103 DEBUG (PropertyBinder.java:112) - Building property contacts
2005-12-15 12:16:17,444 DEBUG (PropertyBinder.java:121) - Cascading contacts with all
2005-12-15 12:16:17,460 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:17,475 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:17,479 DEBUG (Ejb3Column.java:160) - Binding column Party_id unique false
2005-12-15 12:16:17,480 DEBUG (AnnotationBinder.java:396) - Subclass joined column(s) created
2005-12-15 12:16:17,482 DEBUG (EntityBinder.java:201) - Import with entity name=Organization
2005-12-15 12:16:17,483 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.Organization on table Organization
2005-12-15 12:16:17,517 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.Organization per property access
2005-12-15 12:16:17,533 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Organization.cnpj
2005-12-15 12:16:17,534 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,535 DEBUG (Ejb3Column.java:160) - Binding column cnpj unique false
2005-12-15 12:16:17,536 DEBUG (AnnotationBinder.java:1693) - Fetching cnpj with JOIN
2005-12-15 12:16:17,539 DEBUG (PropertyBinder.java:112) - Building property cnpj
2005-12-15 12:16:17,539 DEBUG (PropertyBinder.java:121) - Cascading cnpj with all
2005-12-15 12:16:17,540 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Organization.parties
2005-12-15 12:16:17,541 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,541 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,542 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,543 DEBUG (CollectionBinder.java:247) - Collection role: br.usp.lsi.contact.Organization.parties
2005-12-15 12:16:17,543 DEBUG (PropertyBinder.java:112) - Building property parties
2005-12-15 12:16:17,544 DEBUG (PropertyBinder.java:121) - Cascading parties with all
2005-12-15 12:16:17,545 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Organization.isNucleus
2005-12-15 12:16:17,546 DEBUG (Ejb3Column.java:160) - Binding column isNucleus unique false
2005-12-15 12:16:17,561 DEBUG (PropertyBinder.java:93) - binding property isNucleus with lazy=false
2005-12-15 12:16:17,562 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for isNucleus
2005-12-15 12:16:17,563 DEBUG (PropertyBinder.java:112) - Building property isNucleus
2005-12-15 12:16:17,564 DEBUG (PropertyBinder.java:121) - Cascading isNucleus with null
2005-12-15 12:16:17,564 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Organization.name
2005-12-15 12:16:17,565 DEBUG (Ejb3Column.java:160) - Binding column name unique false
2005-12-15 12:16:17,565 DEBUG (PropertyBinder.java:93) - binding property name with lazy=false
2005-12-15 12:16:17,566 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for name
2005-12-15 12:16:17,567 DEBUG (PropertyBinder.java:112) - Building property name
2005-12-15 12:16:17,567 DEBUG (PropertyBinder.java:121) - Cascading name with null
2005-12-15 12:16:17,568 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:17,576 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:17,576 DEBUG (Ejb3Column.java:160) - Binding column Party_id unique false
2005-12-15 12:16:17,577 DEBUG (AnnotationBinder.java:396) - Subclass joined column(s) created
2005-12-15 12:16:17,578 DEBUG (EntityBinder.java:201) - Import with entity name=Person
2005-12-15 12:16:17,578 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.Person on table Person
2005-12-15 12:16:17,580 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.Person per property access
2005-12-15 12:16:17,583 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Person.firstName
2005-12-15 12:16:17,584 DEBUG (Ejb3Column.java:160) - Binding column firstName unique false
2005-12-15 12:16:17,585 DEBUG (PropertyBinder.java:93) - binding property firstName with lazy=false
2005-12-15 12:16:17,585 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for firstName
2005-12-15 12:16:17,586 DEBUG (PropertyBinder.java:112) - Building property firstName
2005-12-15 12:16:17,586 DEBUG (PropertyBinder.java:121) - Cascading firstName with null
2005-12-15 12:16:17,587 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Person.middleName
2005-12-15 12:16:17,587 DEBUG (Ejb3Column.java:160) - Binding column middleName unique false
2005-12-15 12:16:17,588 DEBUG (PropertyBinder.java:93) - binding property middleName with lazy=false
2005-12-15 12:16:17,588 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for middleName
2005-12-15 12:16:17,592 DEBUG (PropertyBinder.java:112) - Building property middleName
2005-12-15 12:16:17,592 DEBUG (PropertyBinder.java:121) - Cascading middleName with null
2005-12-15 12:16:17,593 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Person.lastName
2005-12-15 12:16:17,593 DEBUG (Ejb3Column.java:160) - Binding column lastName unique false
2005-12-15 12:16:17,594 DEBUG (PropertyBinder.java:93) - binding property lastName with lazy=false
2005-12-15 12:16:17,594 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for lastName
2005-12-15 12:16:17,595 DEBUG (PropertyBinder.java:112) - Building property lastName
2005-12-15 12:16:17,596 DEBUG (PropertyBinder.java:121) - Cascading lastName with null
2005-12-15 12:16:17,596 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Person.weekSchedule
2005-12-15 12:16:17,597 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,597 DEBUG (Ejb3Column.java:160) - Binding column weekSchedule unique false
2005-12-15 12:16:17,598 DEBUG (AnnotationBinder.java:1693) - Fetching weekSchedule with JOIN
2005-12-15 12:16:17,599 DEBUG (PropertyBinder.java:112) - Building property weekSchedule
2005-12-15 12:16:17,599 DEBUG (PropertyBinder.java:121) - Cascading weekSchedule with all
2005-12-15 12:16:17,600 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.Person.cpf
2005-12-15 12:16:17,600 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,704 DEBUG (Ejb3Column.java:160) - Binding column cpf unique false
2005-12-15 12:16:17,704 DEBUG (AnnotationBinder.java:1693) - Fetching cpf with JOIN
2005-12-15 12:16:17,705 DEBUG (PropertyBinder.java:112) - Building property cpf
2005-12-15 12:16:17,705 DEBUG (PropertyBinder.java:121) - Cascading cpf with all
2005-12-15 12:16:17,706 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:17,711 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:17,716 DEBUG (Ejb3Column.java:160) - Binding column TYPE unique false
2005-12-15 12:16:17,717 DEBUG (EntityBinder.java:201) - Import with entity name=CPF
2005-12-15 12:16:17,717 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.identifiers.CPF on table CPF
2005-12-15 12:16:17,718 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.identifiers.CPF per property access
2005-12-15 12:16:17,719 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.identifiers.CPF.id
2005-12-15 12:16:17,722 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:17,723 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:17,723 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:17,724 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:17,724 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:17,725 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:17,725 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.identifiers.CPF.value
2005-12-15 12:16:17,726 DEBUG (Ejb3Column.java:160) - Binding column value unique false
2005-12-15 12:16:17,727 DEBUG (PropertyBinder.java:93) - binding property value with lazy=false
2005-12-15 12:16:17,727 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for value
2005-12-15 12:16:17,728 DEBUG (PropertyBinder.java:112) - Building property value
2005-12-15 12:16:17,729 DEBUG (PropertyBinder.java:121) - Cascading value with null
2005-12-15 12:16:17,729 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:17,731 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:17,732 DEBUG (Ejb3Column.java:160) - Binding column TYPE unique false
2005-12-15 12:16:17,733 DEBUG (EntityBinder.java:201) - Import with entity name=CNPJ
2005-12-15 12:16:17,736 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.identifiers.CNPJ on table CNPJ
2005-12-15 12:16:17,736 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.identifiers.CNPJ per property access
2005-12-15 12:16:17,738 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.identifiers.CNPJ.id
2005-12-15 12:16:17,738 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:17,739 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:17,740 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:17,740 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:17,741 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:17,741 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:17,742 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.identifiers.CNPJ.value
2005-12-15 12:16:17,742 DEBUG (Ejb3Column.java:160) - Binding column value unique false
2005-12-15 12:16:17,743 DEBUG (PropertyBinder.java:93) - binding property value with lazy=false
2005-12-15 12:16:17,743 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for value
2005-12-15 12:16:17,744 DEBUG (PropertyBinder.java:112) - Building property value
2005-12-15 12:16:17,745 DEBUG (PropertyBinder.java:121) - Cascading value with null
2005-12-15 12:16:17,745 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:17,748 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:17,749 DEBUG (EntityBinder.java:201) - Import with entity name=ContactInfo
2005-12-15 12:16:17,749 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.info.ContactInfo on table ContactInfo
2005-12-15 12:16:17,750 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.info.ContactInfo per property access
2005-12-15 12:16:17,890 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.ContactInfo.id
2005-12-15 12:16:17,891 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:17,892 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:17,892 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:17,893 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:17,893 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:17,894 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:17,894 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.ContactInfo.qualifier
2005-12-15 12:16:17,895 DEBUG (Ejb3Column.java:160) - Binding column qualifier unique false
2005-12-15 12:16:17,895 DEBUG (PropertyBinder.java:93) - binding property qualifier with lazy=false
2005-12-15 12:16:17,896 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for qualifier
2005-12-15 12:16:17,898 DEBUG (PropertyBinder.java:112) - Building property qualifier
2005-12-15 12:16:17,898 DEBUG (PropertyBinder.java:121) - Cascading qualifier with null
2005-12-15 12:16:17,899 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:17,900 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:17,901 DEBUG (Ejb3Column.java:160) - Binding column ContactInfo_id unique false
2005-12-15 12:16:17,902 DEBUG (AnnotationBinder.java:396) - Subclass joined column(s) created
2005-12-15 12:16:17,902 DEBUG (EntityBinder.java:201) - Import with entity name=Address
2005-12-15 12:16:17,903 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.info.Address on table Address
2005-12-15 12:16:17,904 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.info.Address per property access
2005-12-15 12:16:17,906 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Address.cep
2005-12-15 12:16:17,907 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:17,907 DEBUG (Ejb3Column.java:160) - Binding column cep unique false
2005-12-15 12:16:17,909 DEBUG (AnnotationBinder.java:1693) - Fetching cep with JOIN
2005-12-15 12:16:17,909 DEBUG (PropertyBinder.java:112) - Building property cep
2005-12-15 12:16:17,910 DEBUG (PropertyBinder.java:121) - Cascading cep with all
2005-12-15 12:16:17,913 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Address.city
2005-12-15 12:16:17,914 DEBUG (Ejb3Column.java:160) - Binding column city unique false
2005-12-15 12:16:17,914 DEBUG (PropertyBinder.java:93) - binding property city with lazy=false
2005-12-15 12:16:17,915 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for city
2005-12-15 12:16:17,915 DEBUG (PropertyBinder.java:112) - Building property city
2005-12-15 12:16:17,916 DEBUG (PropertyBinder.java:121) - Cascading city with null
2005-12-15 12:16:17,916 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Address.complement
2005-12-15 12:16:17,917 DEBUG (Ejb3Column.java:160) - Binding column complement unique false
2005-12-15 12:16:17,918 DEBUG (PropertyBinder.java:93) - binding property complement with lazy=false
2005-12-15 12:16:17,918 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for complement
2005-12-15 12:16:17,919 DEBUG (PropertyBinder.java:112) - Building property complement
2005-12-15 12:16:17,919 DEBUG (PropertyBinder.java:121) - Cascading complement with null
2005-12-15 12:16:17,920 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Address.street
2005-12-15 12:16:17,920 DEBUG (Ejb3Column.java:160) - Binding column street unique false
2005-12-15 12:16:17,921 DEBUG (PropertyBinder.java:93) - binding property street with lazy=false
2005-12-15 12:16:17,921 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for street
2005-12-15 12:16:17,923 DEBUG (PropertyBinder.java:112) - Building property street
2005-12-15 12:16:17,924 DEBUG (PropertyBinder.java:121) - Cascading street with null
2005-12-15 12:16:17,924 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Address.streetType
2005-12-15 12:16:17,925 DEBUG (Ejb3Column.java:160) - Binding column streetType unique false
2005-12-15 12:16:17,925 DEBUG (PropertyBinder.java:93) - binding property streetType with lazy=false
2005-12-15 12:16:17,926 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for streetType
2005-12-15 12:16:17,926 DEBUG (PropertyBinder.java:112) - Building property streetType
2005-12-15 12:16:17,928 DEBUG (PropertyBinder.java:121) - Cascading streetType with null
2005-12-15 12:16:17,928 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Address.state
2005-12-15 12:16:17,929 DEBUG (Ejb3Column.java:160) - Binding column state unique false
2005-12-15 12:16:17,930 DEBUG (PropertyBinder.java:93) - binding property state with lazy=false
2005-12-15 12:16:17,930 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for state
2005-12-15 12:16:17,931 DEBUG (PropertyBinder.java:112) - Building property state
2005-12-15 12:16:17,931 DEBUG (PropertyBinder.java:121) - Cascading state with null
2005-12-15 12:16:17,932 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Address.number
2005-12-15 12:16:17,932 DEBUG (Ejb3Column.java:160) - Binding column number unique false
2005-12-15 12:16:17,934 DEBUG (PropertyBinder.java:93) - binding property number with lazy=false
2005-12-15 12:16:17,935 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for number
2005-12-15 12:16:17,935 DEBUG (PropertyBinder.java:112) - Building property number
2005-12-15 12:16:18,073 DEBUG (PropertyBinder.java:121) - Cascading number with null
2005-12-15 12:16:18,074 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Address.country
2005-12-15 12:16:18,075 DEBUG (Ejb3Column.java:160) - Binding column country unique false
2005-12-15 12:16:18,075 DEBUG (PropertyBinder.java:93) - binding property country with lazy=false
2005-12-15 12:16:18,076 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for country
2005-12-15 12:16:18,076 DEBUG (PropertyBinder.java:112) - Building property country
2005-12-15 12:16:18,077 DEBUG (PropertyBinder.java:121) - Cascading country with null
2005-12-15 12:16:18,078 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,081 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,082 DEBUG (Ejb3Column.java:160) - Binding column TYPE unique false
2005-12-15 12:16:18,082 DEBUG (EntityBinder.java:201) - Import with entity name=CEP
2005-12-15 12:16:18,083 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.info.CEP on table CEP
2005-12-15 12:16:18,086 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.info.CEP per property access
2005-12-15 12:16:18,087 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.CEP.id
2005-12-15 12:16:18,088 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:18,088 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:18,089 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:18,090 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:18,090 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:18,091 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:18,091 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.CEP.cep
2005-12-15 12:16:18,092 DEBUG (Ejb3Column.java:160) - Binding column cep unique false
2005-12-15 12:16:18,092 DEBUG (PropertyBinder.java:93) - binding property cep with lazy=false
2005-12-15 12:16:18,093 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for cep
2005-12-15 12:16:18,093 DEBUG (PropertyBinder.java:112) - Building property cep
2005-12-15 12:16:18,094 DEBUG (PropertyBinder.java:121) - Cascading cep with null
2005-12-15 12:16:18,095 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,098 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,099 DEBUG (Ejb3Column.java:160) - Binding column ContactInfo_id unique false
2005-12-15 12:16:18,099 DEBUG (AnnotationBinder.java:396) - Subclass joined column(s) created
2005-12-15 12:16:18,100 DEBUG (EntityBinder.java:201) - Import with entity name=EmailAddress
2005-12-15 12:16:18,101 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.info.EmailAddress on table EmailAddress
2005-12-15 12:16:18,101 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.info.EmailAddress per property access
2005-12-15 12:16:18,103 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.EmailAddress.email
2005-12-15 12:16:18,103 DEBUG (Ejb3Column.java:160) - Binding column email unique false
2005-12-15 12:16:18,104 DEBUG (PropertyBinder.java:93) - binding property email with lazy=false
2005-12-15 12:16:18,104 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for email
2005-12-15 12:16:18,105 DEBUG (PropertyBinder.java:112) - Building property email
2005-12-15 12:16:18,106 DEBUG (PropertyBinder.java:121) - Cascading email with null
2005-12-15 12:16:18,106 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,108 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,109 DEBUG (Ejb3Column.java:160) - Binding column ContactInfo_id unique false
2005-12-15 12:16:18,112 DEBUG (AnnotationBinder.java:396) - Subclass joined column(s) created
2005-12-15 12:16:18,112 DEBUG (EntityBinder.java:201) - Import with entity name=InstantMessenger
2005-12-15 12:16:18,113 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.info.InstantMessenger on table InstantMessenger
2005-12-15 12:16:18,114 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.info.InstantMessenger per property access
2005-12-15 12:16:18,115 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.InstantMessenger.userId
2005-12-15 12:16:18,116 DEBUG (Ejb3Column.java:160) - Binding column userId unique false
2005-12-15 12:16:18,116 DEBUG (PropertyBinder.java:93) - binding property userId with lazy=false
2005-12-15 12:16:18,117 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for userId
2005-12-15 12:16:18,117 DEBUG (PropertyBinder.java:112) - Building property userId
2005-12-15 12:16:18,118 DEBUG (PropertyBinder.java:121) - Cascading userId with null
2005-12-15 12:16:18,118 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.InstantMessenger.provider
2005-12-15 12:16:18,119 DEBUG (Ejb3Column.java:160) - Binding column provider unique false
2005-12-15 12:16:18,255 DEBUG (PropertyBinder.java:93) - binding property provider with lazy=false
2005-12-15 12:16:18,256 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for provider
2005-12-15 12:16:18,256 DEBUG (PropertyBinder.java:112) - Building property provider
2005-12-15 12:16:18,257 DEBUG (PropertyBinder.java:121) - Cascading provider with null
2005-12-15 12:16:18,259 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,261 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,262 DEBUG (Ejb3Column.java:160) - Binding column ContactInfo_id unique false
2005-12-15 12:16:18,263 DEBUG (AnnotationBinder.java:396) - Subclass joined column(s) created
2005-12-15 12:16:18,263 DEBUG (EntityBinder.java:201) - Import with entity name=PhoneNumber
2005-12-15 12:16:18,264 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.info.PhoneNumber on table PhoneNumber
2005-12-15 12:16:18,267 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.info.PhoneNumber per property access
2005-12-15 12:16:18,452 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.PhoneNumber.countryCode
2005-12-15 12:16:18,453 DEBUG (Ejb3Column.java:160) - Binding column countryCode unique false
2005-12-15 12:16:18,453 DEBUG (PropertyBinder.java:93) - binding property countryCode with lazy=false
2005-12-15 12:16:18,453 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for countryCode
2005-12-15 12:16:18,454 DEBUG (PropertyBinder.java:112) - Building property countryCode
2005-12-15 12:16:18,454 DEBUG (PropertyBinder.java:121) - Cascading countryCode with null
2005-12-15 12:16:18,455 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.PhoneNumber.areaCode
2005-12-15 12:16:18,455 DEBUG (Ejb3Column.java:160) - Binding column areaCode unique false
2005-12-15 12:16:18,457 DEBUG (PropertyBinder.java:93) - binding property areaCode with lazy=false
2005-12-15 12:16:18,458 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for areaCode
2005-12-15 12:16:18,459 DEBUG (PropertyBinder.java:112) - Building property areaCode
2005-12-15 12:16:18,459 DEBUG (PropertyBinder.java:121) - Cascading areaCode with null
2005-12-15 12:16:18,460 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.PhoneNumber.number
2005-12-15 12:16:18,461 DEBUG (Ejb3Column.java:160) - Binding column number unique false
2005-12-15 12:16:18,462 DEBUG (PropertyBinder.java:93) - binding property number with lazy=false
2005-12-15 12:16:18,463 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for number
2005-12-15 12:16:18,463 DEBUG (PropertyBinder.java:112) - Building property number
2005-12-15 12:16:18,464 DEBUG (PropertyBinder.java:121) - Cascading number with null
2005-12-15 12:16:18,464 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,469 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,469 DEBUG (Ejb3Column.java:160) - Binding column ContactInfo_id unique false
2005-12-15 12:16:18,471 DEBUG (AnnotationBinder.java:396) - Subclass joined column(s) created
2005-12-15 12:16:18,472 DEBUG (EntityBinder.java:201) - Import with entity name=Ability
2005-12-15 12:16:18,472 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.info.Ability on table Ability
2005-12-15 12:16:18,473 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.info.Ability per property access
2005-12-15 12:16:18,474 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Ability.areasOfPerformance
2005-12-15 12:16:18,475 DEBUG (Ejb3Column.java:160) - Binding column areasOfPerformance unique false
2005-12-15 12:16:18,476 DEBUG (PropertyBinder.java:93) - binding property areasOfPerformance with lazy=false
2005-12-15 12:16:18,476 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for areasOfPerformance
2005-12-15 12:16:18,477 DEBUG (PropertyBinder.java:112) - Building property areasOfPerformance
2005-12-15 12:16:18,477 DEBUG (PropertyBinder.java:121) - Cascading areasOfPerformance with null
2005-12-15 12:16:18,478 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Ability.formation
2005-12-15 12:16:18,479 DEBUG (Ejb3Column.java:160) - Binding column formation unique false
2005-12-15 12:16:18,479 DEBUG (PropertyBinder.java:93) - binding property formation with lazy=false
2005-12-15 12:16:18,480 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for formation
2005-12-15 12:16:18,480 DEBUG (PropertyBinder.java:112) - Building property formation
2005-12-15 12:16:18,481 DEBUG (PropertyBinder.java:121) - Cascading formation with null
2005-12-15 12:16:18,483 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Ability.interestsOfPerformance
2005-12-15 12:16:18,484 DEBUG (Ejb3Column.java:160) - Binding column interestsOfPerformance unique false
2005-12-15 12:16:18,485 DEBUG (PropertyBinder.java:93) - binding property interestsOfPerformance with lazy=false
2005-12-15 12:16:18,485 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for interestsOfPerformance
2005-12-15 12:16:18,486 DEBUG (PropertyBinder.java:112) - Building property interestsOfPerformance
2005-12-15 12:16:18,486 DEBUG (PropertyBinder.java:121) - Cascading interestsOfPerformance with null
2005-12-15 12:16:18,487 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Ability.urlLattes
2005-12-15 12:16:18,487 DEBUG (Ejb3Column.java:160) - Binding column urlLattes unique false
2005-12-15 12:16:18,488 DEBUG (PropertyBinder.java:93) - binding property urlLattes with lazy=false
2005-12-15 12:16:18,488 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for urlLattes
2005-12-15 12:16:18,489 DEBUG (PropertyBinder.java:112) - Building property urlLattes
2005-12-15 12:16:18,489 DEBUG (PropertyBinder.java:121) - Cascading urlLattes with null
2005-12-15 12:16:18,490 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Ability.resumeContentType
2005-12-15 12:16:18,490 DEBUG (Ejb3Column.java:160) - Binding column resumeContentType unique false
2005-12-15 12:16:18,491 DEBUG (PropertyBinder.java:93) - binding property resumeContentType with lazy=false
2005-12-15 12:16:18,491 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for resumeContentType
2005-12-15 12:16:18,493 DEBUG (PropertyBinder.java:112) - Building property resumeContentType
2005-12-15 12:16:18,493 DEBUG (PropertyBinder.java:121) - Cascading resumeContentType with null
2005-12-15 12:16:18,494 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,497 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,498 DEBUG (Ejb3Column.java:160) - Binding column ContactInfo_id unique false
2005-12-15 12:16:18,498 DEBUG (AnnotationBinder.java:396) - Subclass joined column(s) created
2005-12-15 12:16:18,499 DEBUG (EntityBinder.java:201) - Import with entity name=Attachment
2005-12-15 12:16:18,499 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.info.Attachment on table Attachment
2005-12-15 12:16:18,500 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.info.Attachment per property access
2005-12-15 12:16:18,501 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.info.Attachment.url
2005-12-15 12:16:18,502 DEBUG (Ejb3Column.java:160) - Binding column url unique false
2005-12-15 12:16:18,502 DEBUG (PropertyBinder.java:93) - binding property url with lazy=false
2005-12-15 12:16:18,502 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for url
2005-12-15 12:16:18,503 DEBUG (PropertyBinder.java:112) - Building property url
2005-12-15 12:16:18,503 DEBUG (PropertyBinder.java:121) - Cascading url with null
2005-12-15 12:16:18,505 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,507 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,508 DEBUG (Ejb3Column.java:160) - Binding column TYPE unique false
2005-12-15 12:16:18,508 DEBUG (EntityBinder.java:201) - Import with entity name=TimeRange
2005-12-15 12:16:18,509 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.schedule.TimeRange on table TimeRange
2005-12-15 12:16:18,509 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.schedule.TimeRange per property access
2005-12-15 12:16:18,513 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.schedule.TimeRange.id
2005-12-15 12:16:18,514 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:18,514 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:18,514 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:18,515 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:18,515 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:18,516 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:18,516 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.schedule.TimeRange.begin
2005-12-15 12:16:18,516 DEBUG (Ejb3Column.java:160) - Binding column begin unique false
2005-12-15 12:16:18,518 DEBUG (PropertyBinder.java:93) - binding property begin with lazy=false
2005-12-15 12:16:18,518 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for begin
2005-12-15 12:16:18,519 DEBUG (PropertyBinder.java:112) - Building property begin
2005-12-15 12:16:18,519 DEBUG (PropertyBinder.java:121) - Cascading begin with null
2005-12-15 12:16:18,520 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.schedule.TimeRange.end
2005-12-15 12:16:18,520 DEBUG (Ejb3Column.java:160) - Binding column end unique false
2005-12-15 12:16:18,520 DEBUG (PropertyBinder.java:93) - binding property end with lazy=false
2005-12-15 12:16:18,521 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for end
2005-12-15 12:16:18,521 DEBUG (PropertyBinder.java:112) - Building property end
2005-12-15 12:16:18,521 DEBUG (PropertyBinder.java:121) - Cascading end with null
2005-12-15 12:16:18,522 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,529 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,529 DEBUG (Ejb3Column.java:160) - Binding column TYPE unique false
2005-12-15 12:16:18,530 DEBUG (EntityBinder.java:201) - Import with entity name=Period
2005-12-15 12:16:18,530 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.contact.schedule.Period on table Period
2005-12-15 12:16:18,532 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.contact.schedule.Period per property access
2005-12-15 12:16:18,534 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.schedule.Period.id
2005-12-15 12:16:18,536 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:18,536 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:18,537 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:18,537 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:18,538 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:18,538 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:18,538 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.contact.schedule.Period.timeRanges
2005-12-15 12:16:18,539 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,539 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,540 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,598 DEBUG (CollectionBinder.java:247) - Collection role: br.usp.lsi.contact.schedule.Period.timeRanges
2005-12-15 12:16:18,599 DEBUG (PropertyBinder.java:112) - Building property timeRanges
2005-12-15 12:16:18,599 DEBUG (PropertyBinder.java:121) - Cascading timeRanges with all
2005-12-15 12:16:18,603 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,604 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,605 DEBUG (Ejb3Column.java:160) - Binding column TYPE unique false
2005-12-15 12:16:18,606 DEBUG (EntityBinder.java:201) - Import with entity name=Profile
2005-12-15 12:16:18,606 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.security.Profile on table Profile
2005-12-15 12:16:18,607 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.security.Profile per property access
2005-12-15 12:16:18,609 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Profile.id
2005-12-15 12:16:18,609 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:18,610 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:18,610 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:18,611 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:18,612 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:18,612 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:18,613 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Profile.profileName
2005-12-15 12:16:18,614 DEBUG (Ejb3Column.java:160) - Binding column profileName unique false
2005-12-15 12:16:18,615 DEBUG (PropertyBinder.java:93) - binding property profileName with lazy=false
2005-12-15 12:16:18,616 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for profileName
2005-12-15 12:16:18,617 DEBUG (PropertyBinder.java:112) - Building property profileName
2005-12-15 12:16:18,617 DEBUG (PropertyBinder.java:121) - Cascading profileName with null
2005-12-15 12:16:18,618 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Profile.user
2005-12-15 12:16:18,619 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,619 DEBUG (Ejb3Column.java:160) - Binding column user unique false
2005-12-15 12:16:18,620 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,621 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,621 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,622 DEBUG (CollectionBinder.java:247) - Collection role: br.usp.lsi.security.Profile.user
2005-12-15 12:16:18,622 DEBUG (PropertyBinder.java:112) - Building property user
2005-12-15 12:16:18,623 DEBUG (PropertyBinder.java:121) - Cascading user with persist,refresh
2005-12-15 12:16:18,624 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,627 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,628 DEBUG (Ejb3Column.java:160) - Binding column TYPE unique false
2005-12-15 12:16:18,628 DEBUG (EntityBinder.java:201) - Import with entity name=Security
2005-12-15 12:16:18,629 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.security.Security on table Security
2005-12-15 12:16:18,630 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.security.Security per property access
2005-12-15 12:16:18,634 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Security.id
2005-12-15 12:16:18,634 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:18,644 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:18,646 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:18,647 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:18,647 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:18,648 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:18,648 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Security.user
2005-12-15 12:16:18,649 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,650 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,653 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,653 DEBUG (CollectionBinder.java:247) - Collection role: br.usp.lsi.security.Security.user
2005-12-15 12:16:18,654 DEBUG (PropertyBinder.java:112) - Building property user
2005-12-15 12:16:18,654 DEBUG (PropertyBinder.java:121) - Cascading user with all
2005-12-15 12:16:18,655 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Security.grouping
2005-12-15 12:16:18,655 DEBUG (Ejb3Column.java:160) - Binding column grouping unique false
2005-12-15 12:16:18,656 DEBUG (PropertyBinder.java:93) - binding property grouping with lazy=false
2005-12-15 12:16:18,656 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for grouping
2005-12-15 12:16:18,657 DEBUG (PropertyBinder.java:112) - Building property grouping
2005-12-15 12:16:18,657 DEBUG (PropertyBinder.java:121) - Cascading grouping with null
2005-12-15 12:16:18,658 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Security.name
2005-12-15 12:16:18,658 DEBUG (Ejb3Column.java:160) - Binding column name unique false
2005-12-15 12:16:18,658 DEBUG (PropertyBinder.java:93) - binding property name with lazy=false
2005-12-15 12:16:18,659 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for name
2005-12-15 12:16:18,659 DEBUG (PropertyBinder.java:112) - Building property name
2005-12-15 12:16:18,660 DEBUG (PropertyBinder.java:121) - Cascading name with null
2005-12-15 12:16:18,662 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Security.profile
2005-12-15 12:16:18,662 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,663 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,663 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,779 DEBUG (CollectionBinder.java:247) - Collection role: br.usp.lsi.security.Security.profile
2005-12-15 12:16:18,780 DEBUG (PropertyBinder.java:112) - Building property profile
2005-12-15 12:16:18,780 DEBUG (PropertyBinder.java:121) - Cascading profile with all
2005-12-15 12:16:18,781 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.Security.action
2005-12-15 12:16:18,782 DEBUG (Ejb3Column.java:160) - Binding column action unique false
2005-12-15 12:16:18,782 DEBUG (PropertyBinder.java:93) - binding property action with lazy=false
2005-12-15 12:16:18,783 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for action
2005-12-15 12:16:18,783 DEBUG (PropertyBinder.java:112) - Building property action
2005-12-15 12:16:18,784 DEBUG (PropertyBinder.java:121) - Cascading action with null
2005-12-15 12:16:18,784 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,790 INFO (AnnotationBinder.java:340) - Binding entity from annotated class: java.lang.Class
2005-12-15 12:16:18,791 DEBUG (Ejb3Column.java:160) - Binding column TYPE unique false
2005-12-15 12:16:18,792 DEBUG (EntityBinder.java:201) - Import with entity name=User
2005-12-15 12:16:18,794 INFO (EntityBinder.java:298) - Bind entity br.usp.lsi.security.User on table Users
2005-12-15 12:16:18,795 DEBUG (AnnotationBinder.java:802) - Processing br.usp.lsi.security.User per property access
2005-12-15 12:16:18,797 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.User.id
2005-12-15 12:16:18,798 DEBUG (Ejb3Column.java:160) - Binding column id unique false
2005-12-15 12:16:18,798 DEBUG (AnnotationBinder.java:979) - id is an id
2005-12-15 12:16:18,799 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for id
2005-12-15 12:16:18,799 DEBUG (PropertyBinder.java:112) - Building property id
2005-12-15 12:16:18,800 DEBUG (PropertyBinder.java:121) - Cascading id with null
2005-12-15 12:16:18,801 DEBUG (AnnotationBinder.java:1019) - Bind @EmbeddedId on id
2005-12-15 12:16:18,801 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.User.person
2005-12-15 12:16:18,802 DEBUG (Ejb3Column.java:160) - Binding column null unique false
2005-12-15 12:16:18,802 DEBUG (Ejb3Column.java:160) - Binding column person unique false
2005-12-15 12:16:18,804 DEBUG (AnnotationBinder.java:1693) - Fetching person with JOIN
2005-12-15 12:16:18,805 DEBUG (PropertyBinder.java:112) - Building property person
2005-12-15 12:16:18,805 DEBUG (PropertyBinder.java:121) - Cascading person with all
2005-12-15 12:16:18,806 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.User.active
2005-12-15 12:16:18,807 DEBUG (Ejb3Column.java:160) - Binding column active unique false
2005-12-15 12:16:18,807 DEBUG (PropertyBinder.java:93) - binding property active with lazy=false
2005-12-15 12:16:18,808 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for active
2005-12-15 12:16:18,808 DEBUG (PropertyBinder.java:112) - Building property active
2005-12-15 12:16:18,809 DEBUG (PropertyBinder.java:121) - Cascading active with null
2005-12-15 12:16:18,809 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.User.password
2005-12-15 12:16:18,810 DEBUG (Ejb3Column.java:160) - Binding column password unique false
2005-12-15 12:16:18,811 DEBUG (PropertyBinder.java:93) - binding property password with lazy=false
2005-12-15 12:16:18,811 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for password
2005-12-15 12:16:18,812 DEBUG (PropertyBinder.java:112) - Building property password
2005-12-15 12:16:18,812 DEBUG (PropertyBinder.java:121) - Cascading password with null
2005-12-15 12:16:18,813 DEBUG (AnnotationBinder.java:865) - Processing annotations of br.usp.lsi.security.User.userName
2005-12-15 12:16:18,814 DEBUG (Ejb3Column.java:160) - Binding column userName unique false
2005-12-15 12:16:18,815 DEBUG (PropertyBinder.java:93) - binding property userName with lazy=false
2005-12-15 12:16:18,816 DEBUG (SimpleValueBinder.java:183) - building SimpleValue for userName
2005-12-15 12:16:18,816 DEBUG (PropertyBinder.java:112) - Building property userName
2005-12-15 12:16:18,817 DEBUG (PropertyBinder.java:121) - Cascading userName with null
2005-12-15 12:16:18,818 DEBUG (ClassValidator.java:93) - ResourceBundle ValidatorMessages not found. Delegate to org.hibernate.validator.resources.DefaultValidatorMessages
2005-12-15 12:16:18,820 DEBUG (Annotat


Top
 Profile  
 
 Post subject: ...
PostPosted: Thu Dec 15, 2005 12:41 pm 
Newbie

Joined: Thu Dec 15, 2005 10:18 am
Posts: 3
Location: São Paulo, Brasil
The app stop without any exception... the hibernate don't persist anything...
don't return after:
sessionFactory = configuration.buildSessionFactory();
...


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 15, 2005 6:33 pm 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
You don't provide enough info, try to debug your app and find the offending parT.

_________________
Emmanuel


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.