`
ytzhsh
  • 浏览: 9328 次
  • 性别: Icon_minigender_1
  • 来自: 无锡
社区版块
存档分类
最新评论

Hibernate的基本配置

阅读更多
<hibernate-configuration>
<session-factory>
<!-- local connection properties -->
<property name="hibernate.connection.url">
jdbc:mysql://localhost/msgbook?useUnicode=true&characterEncoding=utf-8
</property>
<property name="hibernate.connection.driver_class">
org.gjt.mm.mysql.Driver
</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password" />
<!-- property name="hibernate.connection.pool_size"></property -->
<!-- dialect for MySQL -->
<property name="dialect">
org.hibernate.dialect.MySQLDialect
</property>
<property name="hibernate.show_sql">false</property>
<property name="hibernate.transaction.factory_class">
org.hibernate.transaction.JDBCTransactionFactory
</property>
<mapping resource="UserInfo.hbm.xml" />
<mapping resource="MsgbookInfo.hbm.xml" />
</session-factory>
</hibernate-configuration>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics