LocalDateTime LocalDateTime 단위 테스트 TimeController.class package com.example.demo; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * The Class TimeController. */ @RestController public class TimeController { @GetMapping("/test") public TestDTO helloDTO4(TestDTO testDTO){ System.out.println(testDTO.toString()); return te..