java
-
java 컨트롤러 요청java 2024. 6. 27. 17:43
한개의 컨트롤러 => 컨피그레이션, bean 등록. endpoint 하나하나가 bean 인듯 (mappings) 예시 @Controllerpublic class MainController { @GetMapping("/hello") public @ResponseBody Map getMethodName() { System.out.println("===요청!!! testHello==="); String message = "hello world"; long tid =Thread.currentThread().getId(); HashMap result = new HashMap(); // HttpHeaders header = new..