Java Framework/Spring Boot

[Spring Boot] 프로젝트 구조와 파일의 역할

annovation 2024. 12. 11. 08:58

Spring Boot 프로젝트 구조와 파일의 역할

 

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회차 수업