폴더 & 파일 설명 .Idea : intelli J가 사용하는 설정 파일 src main resources : 자바 파일 제외한 파일들 (xml, html, properties, 설정 파일 등) test : 테스트 코드 소스들이 들어감. build.gradle : plugin 에 우리가 spring boot에서 프로젝트 선택 부분에서 선택한 버전, 언어 등이 들어간다. sourceCompatibility : 자바 버전 dependencies : dependencies에서 선택했던 것과 test library 들어가 있다. repositories: 현 강의에서는 mavenCentral()이 들어가 있는데(공개된 사이트), dependencies에 있는 라이브러리를 여기에서 다운로드한다. 필요하면 특정 사이..