Home 1.1. 프로젝트 생성
Post
Cancel

1.1. 프로젝트 생성

현재 길벗 출판사의 스프링 책을 통해 카피코딩하는 내용을 정리하려 한다.
일단, 11장까지의 프로젝트 파일의 구조를 정리해보려 한다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
├── src
   ├── main
      ├── java
         └── com.example.firstproject
             ├── api
                └── ArticleAPiController.java
             ├── controller
                └── ArticleController.java
             ├── dto  
                └── ArticleForm.java
             ├── entity
                └── Article.java
             └── repository
                 └── ArticleRepository.java
|   |   |
      └── resources
          ├── application.properties
          ├── data.sql
          
          └── templates
              ├── articles
                 ├── edit.mustache
                 ├── index.mustache
                 ├── new.mustache
                 └── show.mustache
              └── layouts 
                  ├── footer.mustache
                  └── header.mustache