Group Table (act_id_group) want to relate with my custom Table

Hi Team,
Creating New Table and Mapping with Existing Camunda Group Table.

Error:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘entityManagerFactory’ defined in class path resource [org/spring
framework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is org.hibernate.AnnotationExc
eption: @OneToOne or @ManyToOne on my project package name.group references an unknown entity: org.camunda.bpm.engin
e.impl.persistence.entity.GroupEntity

Hello @vinothkumar ,

this problem probably occurs as Camunda does not use spring-boot hibernate-jpa.

In general, I would not recommend to create constraints towards the Camunda Engine schema.

From you exception message, I can see that you wanted to extend the Identity Schema. Maybe a custom Identity Provider that uses your user-group-schema would serve as a solution here.

I hope this helps

Jonathan