Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

개발 환경 구축 및 프로젝트 초기화 #2

Open
5 tasks done
gdtknight opened this issue Jun 27, 2023 · 0 comments · Fixed by #12
Open
5 tasks done

개발 환경 구축 및 프로젝트 초기화 #2

gdtknight opened this issue Jun 27, 2023 · 0 comments · Fixed by #12
Assignees
Labels
enhancement New feature or request

Comments

@gdtknight
Copy link
Contributor

gdtknight commented Jun 27, 2023

개발 환경

  • IDE : IntelliJ Ultimate
  • OS : Windows 10
  • JDK : 17
  • Build Tool : Gradle
  • Framework : Spring Boot 3.1.1

프로젝트 기본 구조

📦 
├─ .gitignore
├─ README.md
├─ build.gradle
├─ gradle
│  └─ wrapper
│     ├─ gradle-wrapper.jar
│     └─ gradle-wrapper.properties
├─ gradlew
├─ gradlew.bat
├─ settings.gradle
└─ src
   ├─ main
   │  └─ java
   │     └─ com
   │        └─ fastcampus
   │           ├─ BaseballApp.java
   │           ├─ config
   │           │  └─ BaseballAppConfig.java
   │           ├─ dao
   │           │  ├─ OutPlayerDao.java
   │           │  ├─ PlayerDao.java
   │           │  ├─ StadiumDao.java
   │           │  └─ TeamDao.java
   │           ├─ db
   │           │  ├─ DBConnection.java
   │           │  └─ DBInitializer.java
   │           ├─ dto
   │           │  ├─ StadiumDto.java
   │           │  └─ TeamDto.java
   │           ├─ model
   │           │  ├─ OutPlayer.java
   │           │  ├─ Player.java
   │           │  ├─ Stadium.java
   │           │  └─ Team.java
   │           └─ service
   │              ├─ OutPlayerService.java
   │              ├─ PlayerService.java
   │              ├─ StadiumService.java
   │              └─ TeamService.java
   └─ test
      └─ java
         └─ com
            └─ fastcampus
               └─ BaseballAppTests.java

©generated by Project Tree Generator

프로젝트 최종 구조

📦 
├─ .gitignore
├─ README.md
├─ build.gradle
├─ docs
│  └─ BaseballAppERD.png
├─ gradle
│  └─ wrapper
│     ├─ gradle-wrapper.jar
│     └─ gradle-wrapper.properties
├─ gradlew
├─ gradlew.bat
├─ settings.gradle
└─ src
   └─ main
      ├─ java
      │  └─ com
      │     └─ fastcampus
      │        ├─ BaseballApp.java
      │        ├─ config
      │        │  └─ BaseballAppConfig.java
      │        ├─ dao
      │        │  ├─ OutPlayerDao.java
      │        │  ├─ PlayerDao.java
      │        │  ├─ StadiumDao.java
      │        │  └─ TeamDao.java
      │        ├─ db
      │        │  ├─ DBConnection.java
      │        │  └─ DBInitializer.java
      │        ├─ dto
      │        │  ├─ OutPlayerRespDto.java
      │        │  ├─ PlayerDto.java
      │        │  ├─ PositionRespDto.java
      │        │  ├─ StadiumDto.java
      │        │  └─ TeamDto.java
      │        ├─ enums
      │        │  └─ OutReason.java
      │        ├─ exceptions
      │        │  ├─ BaseballAppException.java
      │        │  └─ code
      │        │     └─ AppErrorCode.java
      │        ├─ model
      │        │  ├─ OutPlayer.java
      │        │  ├─ Player.java
      │        │  ├─ Stadium.java
      │        │  └─ Team.java
      │        └─ service
      │           ├─ OutPlayerService.java
      │           ├─ PlayerService.java
      │           ├─ StadiumService.java
      │           └─ TeamService.java
      └─ resources
         ├─ BaseballApplication.sql
         ├─ application.yml
         └─ banner.txt

©generated by Project Tree Generator

@gdtknight gdtknight added the enhancement New feature or request label Jun 27, 2023
@gdtknight gdtknight linked a pull request Jun 28, 2023 that will close this issue
@gdtknight gdtknight removed a link to a pull request Jun 28, 2023
@gdtknight gdtknight linked a pull request Jun 30, 2023 that will close this issue
@gdtknight gdtknight reopened this Jun 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants