Author | Message |
---|---|
cthanh
Posts: 56
|
Posted 23:39 Jul 08, 2015 |
I was able to generate a csjobs.dll file using the Hbm2ddl.java class; however, I got some extra log statements in my console: Export DDL to E:\Workspace-CS520\csjobs/src/main/scripts/csjobs.ddl ... Jul 08, 2015 11:24:51 PM org.hibernate.annotations.common.Version <clinit> create table users ( create sequence hibernate_sequence; is this due to the deprecated hibernate classes? |
cysun
Posts: 2935
|
Posted 09:36 Jul 09, 2015 |
The extra logging is OK. Note that the logging level is "INFO" so it's just for informational purpose. You can adjust logging level to hide these messages. We'll talk about that when we get to logging. |