inflearn logo
Khóa học

Khóa học

Chia sẻ kiến thức

Bài viết của brian1103269537

brian1103269537 brian1103269537

@brian1103269537

Số lượng đánh giá đã viết
2
Xếp hạng trung bình
4.5

Bài viết 1

Hỏi & Đáp

Redis를 적용했음에도 불구하고 조회 성능의 큰 차이가 없고 오히려 더 안좋은 조회속도를 보이는 것 같습니다.

추가적인 Movie와 MovieDto 코드입니다. @Data public class MovieDto { private Long id; private String title; private String genre; private Integer runningTime; private String descreption; private String director; @JsonFormat(pattern = "yyyy-MM-dd") @JsonSerialize(using = LocalDateSerializer.class) @JsonDeserialize(using = LocalDateDeserializer.class) private LocalDate releaseDate; } @Data @Entity public class Movie { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String title; private String genre; private Integer runningTime; private String descreption; private String director; @JsonFormat(pattern = "yyyy-MM-dd") @JsonSerialize(using = LocalDateSerializer.class) @JsonDeserialize(using = LocalDateDeserializer.class) private LocalDate releaseDate; }

Lượt thích
0
Số bình luận
3
Lượt xem
177