반응형

Spring 28

thymeleaf 템플릿 엔진

컨트롤러에서 return 값으로 문자 반환 ↓ viewResolver가 화면을 찾아서 처리 ↓ 스프링 부트 템플릿엔진 기본 viewName 매핑 ↓ resources:templates/ + {ViewName} + .html ▶ main/java/hello.hellospring 아래 controller 패키지를 생성하고 HelloController 파일을 생성 package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; @Controller ..

Spring/inflearn 2022.08.18

라이브러리

스프링 부트 라이브러리 ▶ spring-boot-starter-thymeleaf : 타임리프 템플릿 엔진(View) → spring-boot-starter(공통) : 스프링부트 + 스프링 코어 + 로깅 → spring-boot → spring-boot-starter-logging ▶ spring-boot-starter-web → spring-boot-starter-tomcat : 톰캣(웹 서버) → spring-webmvc : 스프링 웹 MVC 테스트 라이브러리 ▶ spring-boot-starter-test → junit : 테스트 프레임워크 → mockito : 목 라이브러리 → assertj : 테스트 코드를 좀 더 편하게 작성하게 도와주는 라이브러리 → spring-test : 스프링 통합 테스트..

Spring/inflearn 2022.08.16
반응형