使用Hibernate方言设置表格字符集/校对?

时间:2009-12-15 09:34:06

标签: java mysql hibernate

我使用Hibernate MySQLInnoDB Dialect来生成DDL。

hibernate.cfg.xml:

<property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>

如何为生成的表配置字符集/排序规则为'utf8_general_ci'?

1 个答案:

答案 0 :(得分:12)

之前我有相同的要求并使用了this文章,该文章提供了非常详细的解决方案。您需要继承 MySQLInnoDBDialect 并重写 getTableTypeString 方法。更多文章。