본문 바로가기

카테고리 없음

spring boot, mybatis 에러 : EL1008E: Property or field 'idx' cannot be found on object of type 'coupleMatching.dto.Person' - maybe not public or not valid?

spring boot, mybatis, thymeleaf를 사용중 에러가 났다.

 EL1008E: Property or field 'idx' cannot be found on object of type 'coupleMatching.dto.Person' - maybe not public or not valid?

dto 클래스인 person에 getter를 정의해주지 않아서 생긴 오류. 혹시나 싶어 Setter, NoArgConstructor를 붙여놨었다.

(아래 3개의 어노테이션은 lombok에서 제공하는 어노테이션이다.) 실험결과 getter만 있으면 되고 나머지는 없어도 된다.