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

feat: 회원 관련 API 구현 및 CI 관련 워크플로우 추가 #20

Merged
merged 15 commits into from
Sep 27, 2024

Conversation

peeerr
Copy link
Contributor

@peeerr peeerr commented Sep 26, 2024

📝 작업 내용

1. 회원 관련 API 구현 및 테스트 코드 작성

  • 회원 검색 API
  • 내 정보 조회 API
  • 특정 회원 정보 조회 API
  • 회원 정보 수정 API
  • 회원 컨트롤러/서비스/리파지토리 및 PagingUtil 테스트 코드 작성

2. Weekly PR 시 자동 CI 테스트 워크플로우 추가

  • 자동 CI 테스트 및 실패 지점까지 자동으로 코멘트
  • 기존 CI/CD 자동 배포와는 다른 파일로 분리

3. SuccessResponse 편의 메서드 추가

image

현재 SuccessResponse 생성 코드가 너무 반복되고 있어, 메서드 추가해 두었습니다.
code 가 200이 아니고 info 응답이 필요하다면 맨 위 메서드,
code 가 200이고, info 응답이 필요하다면 가운데 메서드, 필요 없다면 아래 메서드를 사용해 주시면 됩니다!

4. 환경별 설정 파일 분리

image

파일은 이렇게 dev와 prod(운영) 환경으로 나눴습니다
dev에는 민감한 정보도 담겨 있어서 .gitignore에 등록해두었습니다
기존 application.yml은 제거해 주시고, 아래와 같이 application-dev.yml을 따로 만들어 주세요!

spring:
  datasource:
    url: jdbc:h2:mem:testdb
    username: sa
    password:

  jpa:
    properties:
      hibernate:
        format_sql: true
    show-sql: true

  h2:
    console:
      enabled: true

aws:
  s3:
    client: AmazonS3
    region: ap-northeast-2
    bucket: secret
    accessKey: secret
    secretKey: secret

secret에 관한 정보는 따로 드리겠습니다!

그리고, 기본 액티브 프로파일이 prod라서 서버 기동 시 오류가 발생할 텐데 아래와 같이 설정해 주세요

image

image

5. 페이징 관련

저는 커서 기반 페이징을 저번에 코드리뷰 드렸을 때의 Spring Data JPA의 Scrolling using Keyset-Filtering 방식으로 작업을 진행했는데,
페이징 작업이 계속 반복될 것 같아서 PagingUtil 이라는 클래스를 만들어 두었습니다.
이 방식도 한번 고려해 주세요!

🔗 관련 이슈

close #19

@peeerr peeerr added ✨ feat 기능 구현 🚀 deploy 배포 관련 작업 labels Sep 26, 2024
@peeerr peeerr self-assigned this Sep 26, 2024
Copy link

github-actions bot commented Sep 26, 2024

Test Results

18 tests   18 ✅  1s ⏱️
 5 suites   0 💤
 5 files     0 ❌

Results for commit 0aa036d.

♻️ This comment has been updated with latest results.

@peeerr peeerr requested a review from HyeJiJUN11 September 26, 2024 14:06
@peeerr peeerr linked an issue Sep 27, 2024 that may be closed by this pull request
7 tasks
@peeerr peeerr merged commit b994bce into weekly/4 Sep 27, 2024
3 checks passed
@peeerr peeerr deleted the feature/19-member branch September 27, 2024 09:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🚀 deploy 배포 관련 작업 ✨ feat 기능 구현
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEAT] 회원 관련 API 구현 및 CI 관련 워크플로우 추가
2 participants