关于hibernate报错
hibernate配置文件
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
           "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
           "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools.                   -->
<hibernate-configuration>
     <session-factory>
         <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
         <property name="connection.url">jdbc:mysql:///test</property>
         <property name="connection.username">root</property>
         <property name="connection.password">880418</property>
         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  		<mapping resource="it/cast/hibernate/domain/Person.hbm.xml"/>    
     </session-factory>
</hibernate-configuration>
映射文件
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
	"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
	"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-mapping  
package="it.cast.hibernate.domain">
<class name="Person">
	<id name="id">
		<generator class="native"/>
		</id>
	<property name="name"/>
</class>
</hibernate-mapping>
报错信息
log4j:WARN No appenders could be found for logger (org.hibernate.cfg.Environment).
log4j:WARN Please initialize the log4j system properly.
Exception in thread "main" 
org.hibernate.InvalidMappingException: Could not parse mapping document from resource it/cast/hibernate/domain/Person.hbm.xml
	at org.hibernate.cfg.Configuration.addResource(Configuration.java:616)
	at org.hibernate.cfg.Configuration.parseMappingElement(Configuration.java:1635)
	at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1603)
	at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1582)
	at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1556)
	at org.hibernate.cfg.Configuration.configure(Configuration.java:1476)
	at org.hibernate.cfg.Configuration.configure(Configuration.java:1462)
	at it.cast.hibernate.Base.main(Base.java:18)
Caused by: org.hibernate.Invalid
MappingException: Could not parse mapping document from invalid mapping
	at org.hibernate.cfg.Configuration.addInputStream(Configuration.java:549)
	at org.hibernate.cfg.Configuration.addResource(Configuration.java:613)
	... 7 more
Caused by: 
org.xml.sax.SAXParseException: Element type "hibernate-mapping" must be declared.
	at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.create
SAXParseException(ErrorHandlerWrapper.java:195)
	at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.error(ErrorHandlerWrapper.java:131)
	at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:384)
	at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:318)
	at