본문 바로가기

서버

vscode - elementCollection column 참조 오류

728x90

 

 

Caused by: java.sql.SQLIntegrityConstraintViolationException: (conn=451) Cannot add or update a child row: a foreign key constraint fails (`project1`.`#sql-alter-1-1c3`, CONSTRAINT `FKffwems4usce91lgsn7x5l1lff` FOREIGN KEY (`board_entity_bno`) REFERENCES `tbl_board` (`bno`))

 

 

@ElementCollection을 joinColumn 따로 명시하지 않으면

엔티티 이름을 prefix로 두어 pk값으로 외래키를 둔다

 

 

이렇게 두는 경우에는 

imageUrls의 ElementCollection은 외래키를

board_entity_bno로 잡는데

 

실제로는

tbl_board_bno 이다.

 

이것을 잡기 위해

명시해줘야한다

 

다음과 같이 수정한다