我使用spring-boot-starter-data-jpa,我想在Hibernate中注册自定义BasicType。
根据hibernate documentation,我需要org.hibernate.cfg.Configuration对象进行注册。
configuration.registerTypeContributor( (typeContributions, serviceRegistry) -> {
typeContributions.contributeType( BitSetType.INSTANCE );
} );
但是在spring-boot中,我不知道如何获取org.hibernate.cfg.Configuration。
有人知道怎么做吗?