다음과 같은 JPA 어노테이션 및 API 메서드 내 해결되지 않은 심볼을 보고합니다:

예:



  @Entity
  @AssociationOverrides({
    @AssociationOverride(name = "missingAttribute", joinColumns = { ... }), // 오류: 해결돠지 않은 속성
    @AssociationOverride(name = "existingAttribute", joinColumns = { ... })
  })
  public class JavaEntity {
    @OneToOne
    AnotherEntity existingAttribute;
  }