springboot1 회원관리 홈화면=======================================================home controller package hello.hellospring.controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;@Controllerpublic class HomeController { @GetMapping("/") public String home(){ return "home"; }} localhost:8080 을 들어가면 @GetMapping 호출이 됨-> home.html 실행 스프링 컨트롤러가 .. 2024. 7. 4. 이전 1 다음