59일차(2)/Spring Boot(6) : WebConfig 설정, yml 파일 작성하기 - 새 프로젝트 생성 Boot06_WebConfig / 패키지명 com.sy.boot06 - 조건은 기본 2개만 선택 - 만약 선택한 내용을 고정하고 싶다면 체크한 상태로 하단의 Make Default를 누르면 디폴트 상태로 고정된다. com.sy.boot06.config 패키지 생성 WebConfig 클래스 package com.sy.boot06.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springfr..