hibernate3+mysql5.0+tomcat5.5.20的hibernate.cfg.xml文件
<?xml version='1.0' encoding='utf-8'?> <hibernate-configuration> ??? <session-factory>
??????? <property name="hibernate.connection.url">jdbc:mysql:///test</property> ??????? <property name="hibernate.connection.username">username</property> ??????? <property name="hibernate.connection.password">password</property> ??????? <property name="hibernate.connection.pool_size">100</property> ?????? ?<property name="show_sql">false</property> ??????? <property name="dialect"> org.hibernate.dialect.MySQLDialect</property> ??????? <!-- Mapping files --> ??? </session-factory> </hibernate-configuration>
posted on 2006-10-24 15:25 狼愛上貍 閱讀(412) 評論(0) 編輯 收藏 所屬分類: Hibernate
<!DOCTYPE hibernate-configuration
??? PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
??? "
??????? <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
??????? <mapping resource="Train.hbm.xml"/>