<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory name="">
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<!-- 解决中文乱码问题:使用"?useUnicode=true&characterEncoding=UTF-8",不可分行书写 -->
<property name="hibernate.connection.url">
jdbc:mysql://localhost:3306/pf?useUnicode=true&characterEncoding=UTF-8
</property>
<property name="hibernate.connection.username">opfo</property>
<property name="hibernate.connection.password">opfo.cn</property>
<property name="hibernate.connection.pool_size">5</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
<property name="hbm2ddl.auto">update</property>
<property name="show_sql">true</property>
<property name="hibernate.show_sql">true</property>
<mapping resource="cn/opfo/app/domain/Person.hbm.xml" />
</session-factory>
</hibernate-configuration>
相关文章
- 10-27用Java将XML文档保存在数据库中(Hibernate和JAXB的组合)
- 10-27struts神马的不过是对servlet、filter的封装而已,hibernate神马的也不过是对jdbc的封装而已,他们只是把一些常见的操作流程化了,如果不懂servlet、filter,不懂jdbc,使用struts和hibernate出问题了都不知道是怎么回事。
- 10-27关于hibernate字段映射@colunm出现的问题以及jpa驼峰大写转_小写的问题探究
- 10-27关于freemarker静态化生成html页面 乱码的问题
- 10-27记录一次Boot整合Batch框架无法连接达梦数据库的问题
- 10-27如何解决表单提交的中文乱码问题
- 10-27SSM框架中的中文乱码问题
- 10-27[Hibernate]遇到的问题①——无法引入presistence
- 10-27Sublime 使用笔记(九):汉字乱码问题的解决方法
- 10-27springMVC将处理的后的数据通过post方法传给页面时,可能会出现乱码问题,下面提出解决post乱码问题的方法