Thymeleaf 사용하기 application.properties 설정 server.port= # 서버포트 변경 server.port=8080 선언하지 않으면 8080이 기본 spring.thymeleaf.suffix= # 템플릿 확장자 지정 spring.thymeleaf.suffix=.html html을 사용할거면 .html로 설정 만일 jsp를 사용한다면 .jsp를 입력해주면 된다. spring.thymeleaf.prefix= # 템플릿파일의 위치 지정 (뒤에 공백이 있으면 않됨) spring.thymeleaf.prefix=classpath:templates/ 경로를 잡아준다. resources 폴더 밑 templates 폴더가 보이고 그 밑으로 html 파일이 있는 것을 확인할 수 있다. spri..