welcome page 만들기 - 도메인만 누르고 들어왔을 때 첫 화면 src - main - resources - static - index.html Hello hello spring.io - projects - spring boot - learn - 2.3.1 refer docu - welcome page static 에서 index.html 을 찾고 못 찾으면 index.template을 찾음 메뉴얼에서 검색할 줄 알아야 함 정적 페이지 - 적어놓은 파일을 웹서버가 그대로 웹브라우저에 넘겨주는 것 템플릿 엔진 - 원하는 대로 루프를 넣는 등 모양을 변경할 수 있음 time leap 템플릿 엔진 - thymeleaf.org 사이트 웹 애플리케이션에서 첫번째 진입점이 컨트롤러 hello.hello.sp..
[ Development ]/[ Back-end ] Spring 기본
23-2 GDSC 23-24 chapter backend study# 프로젝트 생성 java 11 intelliJ 설치 # 스프링 부트 스타터 사이트 project gradle project java spring boot 2.7.1 project meta data : artifact 빌드 결과 프로젝트명 / packaging jar / java11 dependencies spring web 스프링 기반 웹 프로젝트 / thymeleaf html 만들어주는 템플릿 엔진 # 스프링 부트 라이브러리 spring-boot-starter-web - spring-boot-starter-tomcat: 톰캣 (웹서버) - spring-webmvc: 스프링 웹 MVC - spring-boot-starter-thymeleaf: 타임리프 템플릿 엔진(View) - spring-boot-s..