-
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.
Merge pull request #163 from 3sam5oh/feat/project-package-refactoring
[refactor] 프로젝트 패키지, 클래스 구조 개선
- Loading branch information
Showing
32 changed files
with
59 additions
and
111 deletions.
There are no files selected for viewing
16 changes: 0 additions & 16 deletions
16
webtoon-search-back/webtoon-search/Dockerfile-spring-original
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...hoh/webtoonsearch/common/ApiResponse.java → ...ebtoonsearch/adapter/api/ApiResponse.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
2 changes: 1 addition & 1 deletion
2
...rch/adapter/web/member/NaverUserInfo.java → ...rch/adapter/api/member/NaverUserInfo.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
2 changes: 1 addition & 1 deletion
2
...ch/adapter/web/member/OAuth2UserInfo.java → ...ch/adapter/api/member/OAuth2UserInfo.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
2 changes: 1 addition & 1 deletion
2
...h/adapter/web/member/OAuthController.java → ...h/adapter/api/member/OAuthController.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
2 changes: 1 addition & 1 deletion
2
.../adapter/web/member/PrincipalDetails.java → .../adapter/api/member/PrincipalDetails.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
.../web/webtoon/SearchWebtoonController.java → .../api/webtoon/SearchWebtoonController.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
2 changes: 1 addition & 1 deletion
2
...er/web/webtoon/SearchWebtoonResponse.java → ...er/api/webtoon/SearchWebtoonResponse.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
...r/web/webtoon/SelectRecordController.java → ...r/api/webtoon/SelectRecordController.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
2 changes: 1 addition & 1 deletion
2
...pter/web/webtoon/SelectRecordRequest.java → ...pter/api/webtoon/SelectRecordRequest.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
7 changes: 0 additions & 7 deletions
7
.../main/java/com/samsamohoh/webtoonsearch/adapter/persistence/MemberPersistenceAdapter.java
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.../main/java/com/samsamohoh/webtoonsearch/adapter/persistence/SearchPersistenceAdpater.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
.../main/java/com/samsamohoh/webtoonsearch/adapter/persistence/SelectPersistenceAdapter.java
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
...main/java/com/samsamohoh/webtoonsearch/adapter/persistence/rdbms/MemberJpaRepository.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,8 @@ | ||
package com.samsamohoh.webtoonsearch.adapter.persistence.rdbms; | ||
|
||
import com.samsamohoh.webtoonsearch.adapter.persistence.rdbms.entity.RegisterMemberEntity; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
|
||
public interface MemberJpaRepository extends JpaRepository<RegisterMemberEntity, Long> { | ||
RegisterMemberEntity findByProviderId(String providerId); | ||
} |
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
8 changes: 8 additions & 0 deletions
8
...main/java/com/samsamohoh/webtoonsearch/adapter/persistence/rdbms/SelectJpaRepository.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,8 @@ | ||
package com.samsamohoh.webtoonsearch.adapter.persistence.rdbms; | ||
|
||
import com.samsamohoh.webtoonsearch.adapter.persistence.rdbms.entity.SelectRecordEntity; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
|
||
public interface SelectJpaRepository extends JpaRepository<SelectRecordEntity, String> { | ||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
...ter/persistence/RegisterMemberEntity.java → ...ce/rdbms/entity/RegisterMemberEntity.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
2 changes: 1 addition & 1 deletion
2
...apter/persistence/SelectRecordEntity.java → ...ence/rdbms/entity/SelectRecordEntity.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
File renamed without changes.
File renamed without changes.
6 changes: 1 addition & 5 deletions
6
...dapter/config/OpenSearchClientConfig.java → ...engine/config/OpenSearchClientConfig.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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...pter/persistence/SearchWebtoonEntity.java → ...rchengine/entity/SearchWebtoonEntity.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
2 changes: 1 addition & 1 deletion
2
...ebtoonsearch/domain/MemberValidation.java → .../application/domain/MemberValidation.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
2 changes: 1 addition & 1 deletion
2
...btoonsearch/domain/SearchableWebtoon.java → ...application/domain/SearchableWebtoon.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
6 changes: 3 additions & 3 deletions
6
...ain/java/com/samsamohoh/webtoonsearch/application/service/PrincipalOauth2UserService.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
2 changes: 1 addition & 1 deletion
2
...search/adapter/config/SecurityConfig.java → ...ommon/security/config/SecurityConfig.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
7 changes: 3 additions & 4 deletions
7
.../web/SearchWebtoonControllerUnitTest.java → .../api/SearchWebtoonControllerUnitTest.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