-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: base root entity 분리 * refactor: round에서 meetingDayOfTheWeek 에 대한 의존성 제거 * refactor: 의존성 확인을 위한 패키지 이동 * refactor: 멤버 의존성 정리 프로필 조회 분리 * refactor: 인증 의존성 정리 * refactor: 피드 의존성 정리 * refactor: 스터디, 라운드 서비스 분리 * refactor: MeetingDayOfTheWeek 삭제 * refactor: Round 생성 로직 분리 * refactor: Round 진행 로직 Round로 이동 * refactor: 임시 커밋 * chore: datadog 의존성 삭제 * refactor: study에서 round에 대한 의존성 제거 * refactor: AuthService 패키지 변경 * test: 성능 테스트 구현 * 성능 측정 테스트 구현 * refactor: 테스트 * refactor: 테스트 * refactor: 테스트 * refactor: 테스트 * refactor: 테스트 * refactor: proceedRound 메서드 시간 측정 코드 제거 --------- Co-authored-by: bjk1649 <[email protected]> Co-authored-by: kim dae hee <[email protected]> Co-authored-by: yujamint <[email protected]>
- Loading branch information
1 parent
1983174
commit 6c9b1cb
Showing
110 changed files
with
1,553 additions
and
1,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 0 additions & 39 deletions
39
backend/src/main/java/com/yigongil/backend/application/CertificationService.java
This file was deleted.
Oops, something went wrong.
108 changes: 0 additions & 108 deletions
108
backend/src/main/java/com/yigongil/backend/application/MemberService.java
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
backend/src/main/java/com/yigongil/backend/application/MustDoService.java
This file was deleted.
Oops, something went wrong.
56 changes: 0 additions & 56 deletions
56
backend/src/main/java/com/yigongil/backend/application/RoundService.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
...ngil/backend/application/AuthService.java → ...ngil/backend/config/auth/AuthService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
backend/src/main/java/com/yigongil/backend/config/auth/MemberArgumentResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
backend/src/main/java/com/yigongil/backend/domain/base/BaseRootEntity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.yigongil.backend.domain.base; | ||
|
||
import java.time.LocalDateTime; | ||
import javax.persistence.Column; | ||
import javax.persistence.EntityListeners; | ||
import javax.persistence.MappedSuperclass; | ||
import org.springframework.data.annotation.CreatedDate; | ||
import org.springframework.data.annotation.LastModifiedDate; | ||
import org.springframework.data.domain.AbstractAggregateRoot; | ||
import org.springframework.data.jpa.domain.support.AuditingEntityListener; | ||
|
||
@EntityListeners(AuditingEntityListener.class) | ||
@MappedSuperclass | ||
public class BaseRootEntity extends AbstractAggregateRoot<BaseRootEntity> { | ||
|
||
@CreatedDate | ||
@Column(nullable = false) | ||
protected LocalDateTime createdAt; | ||
|
||
@LastModifiedDate | ||
protected LocalDateTime updatedAt; | ||
|
||
public LocalDateTime getCreatedAt() { | ||
return createdAt; | ||
} | ||
|
||
public LocalDateTime getUpdatedAt() { | ||
return updatedAt; | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
backend/src/main/java/com/yigongil/backend/domain/certification/Certification.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.