250x250
Notice
Recent Posts
Recent Comments
Link
목록게시판 (1)
관심쟁이 영호
[ADYB] 게시판 글쓰기 구현 ㅣ JPA + Spring Boot + Thymeleaf
오늘은 게시판 글쓰기를 구현할 것이다. 목차 Board 도메인 생성 뷰 구현하기 Board Repository 생성 컨트롤러 구현하기 서비스 구현하기 Board 도메인 생성 @Data @Entity(name = "board") public class Board { @Id @GeneratedValue(strategy = GenerationType.AUTO) private int boardId; @Column(nullable = false, length = 100) private String title; @Lob private String content; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name="userId") private User user; @OneT..
Project/ADYB - 쇼핑몰
2021. 8. 3. 15:50