이번엔 Domain 만들어서 테스트 Board라는 Domain을 만들었다. public class Board { private Long bno; private String writer; private String content; private LocalDate regdate; private LocalDate updatedDate; public static class Builder { private Long bno; private String writer; private String content; private LocalDate regdate; private LocalDate updatedDate; public Builder bno(Long bno) { this.bno = bno; return this;..