@Controller와 @RestController를 같이 사용하기
@Controller와 @RestController를 같이 사용하면, @Controller가 작동하지 않음 @Controller 사용# Main.java@Controllerpublic class Main { @RequestMapping("/a") public String deGetHelloWorld() { System.out.println("ssssssssssssssssssssssssss"); return "Hello World"; } @GetMapping("/") public String home() { return "home"; }}# /src/main/resources/templates/home.html Welcome! Click here to see ..
2024.05.26