zzozzolev / medium-clone-spring-boot-java

spring boot java를 이용한 medium clone 프로젝트
0 stars 0 forks source link

유저 인증 정보와 profile, article에서 참조할 수 있는 객체가 맞지 않음 #60

Open zzozzolev opened 2 years ago

zzozzolev commented 2 years ago

문제

전제

해결

profile id로 user 객체를 가져옴

article -> profile
user -> profile
profile -> X

article에 profile이 아닌 user를 참조

article -> user
user -> profile

profile에서 user를 참조

article -> profile
profile -> user
zzozzolev commented 2 years ago

TODO