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

강원대 BE_이세진 3주차 과제 (1단계) #332

Open
wants to merge 5 commits into
base: ez23re
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs : README.md 작성
  • Loading branch information
ez23re committed Jul 12, 2024
commit 242f3a3982f18418395c24497f40b00765ad6578
71 changes: 70 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,70 @@
# spring-gift-jpa
# spring-gift-jpa

## 엔티피 연관관계 매핑 요구사항 : 작성해야할 가능에 대해
- 객체와 테이블 매핑 ->> @Entity @OneToMany 등을 이용
- @DataJpaTest를 사용하여 테스트 코드 작성 : 위시리스트 레포지토리 계속되는 테스트 실패 오류


## 현재 코드 구조
```plaintext
└── src
└── main
├── java
│ └── gift
│ ├── Application.java
│ │
│ ├── admin
│ │ └── AdminController.java
│ │
│ ├── exception
│ │ ├── ForbiddenException.java
│ │ ├── UnauthorizedException.java
│ │ ├── KakaoProductException.java
│ │ └── GlobalExceptionHandler.java
│ │
│ ├── member
│ │ ├── controller
│ │ │ └── MemberController.java
│ │ ├── dto
│ │ │ └── MemberDto.java
│ │ ├── model
│ │ │ └── Member.java
│ │ ├── repostitory
│ │ │ └── MemberRepository.java
│ │ └── service
│ │ ├── MemberService.java
│ │ └── TokenService.java
│ │
│ ├── product
│ │ ├── controller
│ │ │ └── ProductController
│ │ ├── model
│ │ │ └── Product.java
│ │ ├── repository
│ │ │ └── ProductRepository.java
│ │ └── service
│ │ └── ProductService.java
│ │
│ └── wishlist
│ ├── WishList.java
│ ├── WishListController.java
│ ├── WishListRepository.java
│ └── WishListService.java
└── resources
├── member.html
├── data.sql
├── schema.sql
├── static
└── templates
├── add.html
├── edit.html
├── list.html
└── view.html


└── src
└── main
├── java
└── gift
└── MemberRepositoryTest.java