Intro์๋ ํ์ธ์. ์ด๋ฒ ์๊ฐ์๋ spring boot ์์ JPA์ pageable ํ์ฉํ sort ์ ๋ ฌ ๊ตฌํ ๋ฐฉ๋ฒ์ ๋ํด ์์๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค. user ๋ฐ์ดํฐ๊ฐ ์๋ค๋ ๊ฐ์ ํ์ ์งํํด๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค. 1. User ์ํฐํฐ ์ ์ User ์ํฐํฐ์๋ id, name, email, createdDate ๋ฑ์ ํ๋๊ฐ ์๋ค๊ณ ๊ฐ์ ํฉ๋๋ค.@Entitydata class User( @Id @GeneratedValue(strategy = GenerationType.IDENTITY) val id: Long, val name: String, val email: String, @CreatedDate val createdDate: LocalDateTime) 2. UserReposit..