Java Hibernate Mapping File not working
问题 The error I get is " org.hibernate.MappingException: Repeated column in mapping for entity: cdd.model.Answer column: answer_id (should be mapped with insert="false" update="false") " . However when I put those as attributes I get the error: "Attribute "insert" must be declared for element type "id"." Any help would be appreciated. Class: public class Answer { UUID answerID; String content; //constructors and getters and setters } Table: CREATE TABLE IF NOT EXISTS answer ( answer_id uuid NOT