오류잡기

The things you need to know

풀이

구조만들기

나중에 서비스도 들어와야겠져

날짜까지 해서

@Data
public class Post {
private int id;
private String title;
private String content;
private User user;
private Timestamp created;
private Timestamp updated;
}
@Data
public class User {
private int id;
private String username;
private String password;
private String email;
private Timestamp created;
private Timestamp updated;
}
@Data
public class CMRespDto<T> {
private int code;
private String msg;
private T data;
}

참고할 링크

날짜와 시간 API with Java8