파일 업로드
볼빵빵오춘기
파일에 저장된 경로랑 컬럼이 필요하다. board 테이블에 컬럼 추가 filename(varchar[150]), filepath(varchar[300]) 추가한다. ⇒ 이렇게 컬럼이 변경이되면 entity도 변경해줘야한다. BoardEntity filename, filepath 추가한다. public class Board { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id; private String title; private String content; private String filename; private String filepath; } boardwrite.html form 태그에 enctype="multipa..