1) 스프링 프로젝트 생성
스프링 부트 스타터 사이트
에러 문구
Execution failed for task ':compileJava'.
> Could not target platform: 'Java SE 11' using tool chain: 'JDK 8 (1.8)'.
해결 방안
settings > Build, Execution, Deployment > Gradle 에서
Gradle JVM을 11로 수정하기
2) 라이브러리 살펴보기
예전: 웹서버에 자바 코드 넣는 방식, 톰캣 서버 다운 받고 코드를 올리는 방식
현재: embeded, 실행만 했어도 web server가 뜬다.
현업에서는 로그를 통해 파일을 관리해야 함.
개발 공부하는 사람들은 로그를 왜 쓰지? 할 수 있음
junit4 => 최근 5버전 많이 씀
3) View 환경설정
https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features
Spring Boot supports both static and templated welcome pages. It first looks for an index.html file in the configured static content locations. If one is not found, it then looks for an index template. If either is found, it is automatically used as the welcome page of the application.
스프링 부트는 먼저 index.html을 찾음
템플릿 엔진
동적 컨텐츠를 생성하는 방법
주로 사용하는 기능이 view를 만드는 것
viewResolver
가 화면을 찾아서 처리한다. resources:templates/
+ {ViewName} + .html