본문 바로가기
프로그래밍/SpringMVC_기초

View 환경설정(2)

by ILove_NS_MoKa 2023. 10. 13.

 

hellospring 안에 controller(package) 안에 HelloController(Java)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package hello.hellospring.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
 
@Controller
public class HelloController {
    @GetMapping("hello"//http get 방식
    public String hello(Model model){
        model.addAttribute("data","hello!!123");
        return "hello";
        // resources->templates->hello.html 스프링에 찾아서 랜더링해라
        // ViewResulver 가 화면을 찾아서 처리한다. /hello 뷰네임 
    }
}
cs

 

resources->templates->hello.html(file 생성)

1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">      <!-- //타임리프 문법을 쓸수있게 해줄수있다. -->
<head>
    <title>Hello</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
 
<!-- //th 타임리프. -->
<p th:text="'안녕하세요. ' + ${data}" >안녕하세요. 손님</p>     <!-- // data = hey?  -->
</body>
</html>
cs

 

웹 -> http://localhost:8080/hello ( 안녕하세요. hello!!   ) 나오면 성공

 

 

 

컨트롤러에서 리턴 값으로 문자를 반환하면 뷰 리졸버( viewResolver )가 화면을 찾아서 처리한다.

  - 스프링 부트 템플릿엔진 기본 viewName 매핑

  - resources:templates/ +{ViewName}+ .html

 

> 참고: spring-boot-devtools 라이브러리를 추가하면, html 파일을 컴파일만 해주면 서버 재시작 없이

View 파일 변경이 가능하다.

> 인텔리J 컴파일 방법: 메뉴 build Recompile

 

 

'프로그래밍 > SpringMVC_기초' 카테고리의 다른 글

MVC와 템플릿 엔진  (0) 2023.10.13
정적 컨텐츠  (0) 2023.10.13
윈도우 스프링부트 빌드  (0) 2023.10.13
라이브러리 , View환경설정  (0) 2023.10.13
프로젝트 생성  (0) 2023.10.11