jbpm与mysql部署

为了避免乱码,在mysql的链接后面加上参数:

<property name="hibernate.connection.url">jdbc:mysql://127.0.0.1:3306/jbpm?useUnicode=true&characterEncoding=UTF-8</property>

完整代码如下:
<?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">

<hibernate-configuration>
  <session-factory>
  
     <property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
     <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
     <property name="hibernate.connection.url">jdbc:mysql://127.0.0.1:3306/jbpm?useUnicode=true&characterEncoding=UTF-8</property>
     <property name="hibernate.connection.username">jbpm</property>
     <property name="hibernate.connection.password">jbpm</property>
     <property name="hibernate.hbm2ddl.auto">update</property>
     <property name="hibernate.format_sql">true</property>
     
     <mapping resource="jbpm.repository.hbm.xml" />
     <mapping resource="jbpm.execution.hbm.xml" />
     <mapping resource="jbpm.history.hbm.xml" />
     <mapping resource="jbpm.task.hbm.xml" />
     <mapping resource="jbpm.identity.hbm.xml" />
     
     
  </session-factory>
</hibernate-configuration>

你可能感兴趣的:(mysql,jbpm,乱码)