-
Controller,View 생성java/SpringBoot 2022. 8. 4. 01:25728x90
package 프로젝트패키지경로.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/home") public class Home { @GetMapping("") public String doHome(){ return "/WEB-INF/views/home.jsp"; } } //Controller라는 선언을 함 어노테이션 //RequestMaipping /home이라는 http 요청이 들어오면 전부 여기 컨트롤러로 //Get이나 Post냐 그런 mapping 직접적으로 사용
/WEB-INF/views 가 정말 거슬린다
//application.propertis # change port server.port = 8892 spring.mvc.view.prefix=/WEB-INF/views/ spring.mvc.view.suffix=.jsp # devtools spring.devtools.livereload.enabled = true spring.devtools.restart.enabled = true
WEB-INF/view 빼보자
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/home") public class Home { @GetMapping("") public String doHome(){ return "home"; } }
굳굳!!
view단 폴더
728x90'java > SpringBoot' 카테고리의 다른 글
application.properties - application.yml 환경설정파일 (0) 2022.08.07 resultMap , mapUnderscoreToCamelCase (0) 2022.08.05 Lombok 사용하기 (0) 2022.08.05 DB연결 디펜던시, application 설정 (0) 2022.08.04 스프링부트로 프로젝트를 하게 되었다... feat. 노드 하고 싶은데... (0) 2022.08.03