Spring Boot should be mapped with insert="false" update="false"

Fiz um projeto e estou utilizando o comando mvn clean install, porém esta dando o erro abaixo :

Caused by: javax.persistence.PersistenceException: [PersistenceUnit: default]
Unable to build Hibernate SessionFactory; nested exception is org.hibernate.MappingException:
Repeated column in mapping for entity: br.xxxxx.NfeItemImportacaoxxxx column:
nfe_item_id (should be mapped with insert=“false” update=“false”)

Segue abaixo a minha classe:

@Entity
@Table(name = "nfe_item_importacao_xxxxx", schema = "xxxxx")
@IdClass(NfeItemImportacaoxxxPK.class)
@ALL
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonIdentityInfo(generator = JSOGGenerator.class)
public class NfeItemImportacaoxxxx extends AuthAuditable {
    @Id
    @Column(name = "nfe_item_id", insertable = false, updatable = false)
    private Integer nfeItemImportaxxxxId;
    @Id
    @Column(name = "sequencial")
    private Short sequencial;
    @JoinColumn(name = "nfe_item_id", referencedColumnName = "nfe_item_id")
    @ManyToOne(optional = false)
    private NfeItemImporxxxx nfeItemImporxxxx; 

Alguém pode me ajudar?

Você deu o mesmo nome a duas colunas:

Isso não pode acontecer. Ou é uma ou outra.