Hi,
when I inicialize Hibernate, the following warning is happening, can I ignore this warning or this may be an error?
thanks
Code:
15:58:06,802 INFO Environment:462 - Hibernate 2.1.2
15:58:06,812 INFO Environment:491 - hibernate.properties not found
15:58:06,822 INFO Environment:519 - using CGLIB reflection optimizer
15:58:06,842 INFO Configuration:854 - configuring from resource: /hibernate.cfg.xml
15:58:06,842 INFO Configuration:826 - Configuration resource: /hibernate.cfg.xml
15:58:07,082 WARN XMLHelper:55 - Warning parsing XML: /hibernate.cfg.xml(1) URI was not reported to parser for entity [document]
15:58:07,122 WARN XMLHelper:55 - Warning parsing XML: /hibernate.cfg.xml(5) No base URI; hope URI is absolute: http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd
15:58:07,132 WARN XMLHelper:55 - Warning parsing XML: /hibernate.cfg.xml(5) No base URI; hope this SYSTEM id is absolute: http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd
15:58:07,282 INFO Configuration:311 - Mapping resource: net/wasys/crea/model/VotoVO.hbm.xml
Code:
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class
name="net.wasys.crea.model.VotoVO"
table="VOTO"
proxy="net.wasys.crea.model.VotoVO"
>
<id
name="id"
type="java.lang.Long"
column="VOTOID"
>
<generator class="sequence">
<param name="sequence">Voto_serial</param>
</generator>
</id>
<property
name="dataVoto"
type="java.sql.Timestamp"
column="DATAVOTO"
not-null="true"
length="7"
/>
</class>
</hibernate-mapping>