public class AyuMySQLDialect extends org.hibernate.dialect.MySQLDialect {
/**
* "hibernate.hbm2ddl.auto"会无效
*/
// protected void registerVarcharTypes() {
// registerFunction("group_concat", new StandardSQLFunction("group_concat",Hibernate.STRING));
// }
public AyuMySQLDialect() {
super();
registerFunction("group_concat", new StandardSQLFunction( "group_concat", Hibernate.STRING));
}
}
本文介绍了一个自定义的AyuMySQLDialect方言类,该类扩展了Hibernate方言,特别关注了hibernate.hbm2ddl.auto配置项的处理,并注册了group_concat函数。
792

被折叠的 条评论
为什么被折叠?



