1. settings.gradle
- 프로젝트 설정 파일
- 프로젝트의 이름과 모듈 구성 관리
- ex. 모듈 구성 예시
rootProject.name = 'MySpringBootApp'
include 'module1', 'module2'
2. build.gradle
- 빌드 설정 파일 : 의존성 관리
3. src/main/java
- 자바 소스 파일
4. src/main/resources/static
- 정적 파일
- 이미지, 자바스크립트, CSS 등
5. src/main/resources/templates
- 템플릿 파일 : HTML 등
6. src/main/resources/application.properties
- 설정 파일 : 포트번호, 데이터베이스 설정 등
출처
OpenAI의 ChatGPT (https://openai.com)
2024 프로그래머스 백엔드 데브코스 3기 4회차 수업
'Java Framework > Spring Boot' 카테고리의 다른 글
[Spring Boot] 템플릿 엔진 (Template Engines) (1) | 2024.12.15 |
---|---|
[Spring Boot] Custom Query의 SQL 연산자 (2) | 2024.12.14 |
[Spring Boot] JpaRepository (0) | 2024.12.13 |
[Spring Boot] JPA Hibernate DDL Auto (0) | 2024.12.11 |
[Spring Boot] Spring Initializr 맥 인텔리제이 (1) | 2024.12.10 |