resources -> static -> new -> File -> index.html 만들어 welcome 페이지로 사용
<!DOCTYPE HTML> <html> <head> <title>Hello</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> </head> <body> Hello <a href="/hello">hello</a> </body> </html>
hello.hellospring 밑에 패키지로 hello.hellospring.controller를 만든다
컨트롤러에 HelloController 클래스를 만든다
HelloController 클래스에 위와 같이 작성 해준다.
<!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> <p th:text="'안녕하세요. ' + ${data}" >안녕하세요. 손님</p> </body> </html>
templates에 hello.html 만들고 위와 같이 코드를 작성 후 실행 한다.