파일 업로드(하나 업로드 vs 여러 개 업로드)
볼빵빵오춘기
엔티티 클래스※ 해당 프로젝트에서는 총 3개의 게시판에서 파일을 업로드 가능하기에 어느 게시판에서 저장했는지 알고자 board, boardId 를 필드를 정의했다.@Entity@Data@Getter@Setter@NoArgsConstructor@AllArgsConstructor@Builder@Table(name = "DA_BoardFile")public class BoardFileEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private int id; // pk private String board; // 어떤 board에서 가져왔는지 // 게시판의 pk 저장 // 어노테이션을 이용하여 연관관계를 맺지않..