registerFunction() 쓸수 없음
저도 같은 문제 있었는데 다음과 같이 migration 하니 되네요 참고하시길.MyH2Dialect.classpublic class MyH2Dialect extends H2Dialect { @Override public void contributeFunctions(FunctionContributions functionContributions) { functionContributions .getFunctionRegistry() .register("group_concat", new StandardSQLFunction("group_concat", StandardBasicTypes.STRING)); } }근데 이외에도 Member에 @Id @GeneratedValue(strategy = GenerationType.IDENTITY)로 고치고, persistence.xml을 다음과 같이 고쳐야 됩니다.Member.class@Entity @Getter @Setter public class Member { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; // 이하 생략 }persistence.xml 또한 pom.xml에 hibernate-entitymanager dependency를 5.6.15.Final 버전 추가해줬습니다.h2 버전은 2.2.220 사용했습니다.