[SpringBoot JPA] 엔티티 연관관계 매핑 완료, Web server failed to start. Port 8080 was already in use. 오류 해결
오늘 한 것
📍 엔티티 만들기, 엔티티 간의 연관관계 매핑 작성하기
user의 myplant는 리스트 써야한다. 왜냐하면 user는 여러개의 식물을 가질 수 있기 때문이다.
User(=team) VS MyPlant(=member)
PlantFollowing(=team) VS Plant(=member)
PlantFollowing(=team) VS User(=member) (?)
https://velog.io/@conatuseus/연관관계-매핑-기초-2-양방향-연관관계와-연관관계의-주인
[JPA] 연관관계 매핑 기초 #2 (양방향 연관관계와 연관관계의 주인)
이번 글에서는 에 대해 알아보겠습니다. 이 시리즈 글은 김영한 님의 강의, 책을 보고 적은 것임을 알려드립니다. (강추) 오타 및 피드백 환영합니다. 양방향 연관관계 이전 글에서는 회원에서
velog.io
https://ict-nroo.tistory.com/122
[JPA] 양방향 연관관계
양방향 연관관계와 연관관계의 주인 Team을 통해서도 getMemberList()로 특정 팀에 속한 멤버 리스트를 가져오고 싶다. 객체 설계는 위와 같이 Member에서는 Team을 가지고 있고, Team에서는 Members를 가지
ict-nroo.tistory.com
결과 화면
📍 Web server failed to start. Port 8080 was already in use. 오류 해결
https://jgeun97.tistory.com/34
[Spring Boot] Web server failed to start. Port 8080 was already in use.
오류 내용 Description: Web server failed to start. Port 8080 was already in use. Action: Identify and stop the process that's listening on port 8080 or configure this application to listen on anothe..
jgeun97.tistory.com