백엔드

nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'link'

킹king 2023. 2. 21. 09:26
반응형

 

db에 link칼럼을 하나 추가했는데 또 이런 오류가 나길래 뭔가 했더니 모델에 link 쓰는걸 빼먹엇따리

 

1. 모델에 값 추가

public class userMaster extends EntityObject {
	// ...
    private String userId;
    private String link; // 추가
    
    @Builder
    public userMaster(String userId, String link) {
    	this.userId = userId;
        this.link = link; // 추가
    }
}

 

에휴 자바 공부도 해야하는데.. 까막눈인 상태로 수정하는수준.. 과연..