Template Engines 기본 설정

윤혜림·2023년 7월 18일
0

Templates

자바와 htmml 섞여 있는것 들어감

버전은 반드시 3점대 이하로 한다

template engines에 jsp가 없으니 직접 설치해준다

resources에 있는
application.yml로 바꾼다


포트 설정
/WEB-INF/views/넣기
resources static- 웹서버 폴더


라이브러리 두개 넣고

main에

webapp/WEB-INF/views
파일명 틀리지 말것

reviews가 웹서버가 된다

home.jsp에

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Index</title>
</head>
<body>
<h1>Index Page</h1>
<hr/>
</body>
</html>

집어 넣기

demo2에 HomeController만들고

package shop.mtcoding.demo2;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class HomeController {

    @GetMapping("/home")
    public  String home(){
        return  "home";
    }
}

집어 넣기

이런 결과 나옴

제대로 된 주소 입력이 안됐다면 404 notfound라고 뜬다

profile
도라에몽

2개의 댓글

comment-user-thumbnail
2023년 7월 18일

뛰어난 글이네요, 감사합니다.

답글 달기
comment-user-thumbnail
2023년 7월 18일

아주 유익한 내용이네요!

답글 달기