-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[re�factor#148] 답변 채택 API 성능 최적화 (#155)
* [test] : 채택 시 크레딧 정합성 테스트 * [feat] : QuestionPostSimpleQueryRepo 생성 - fetch join을 활용한 한방 쿼리 추가 * [feat] : AnswerSimpleQueryRepo 생성 - fetch join을 활용한 한방 쿼리 추가 * [feat] : 답변채택 쿼리 개수 개선 v2 추가 * [feat] : 답변채택 쿼리 개수 개선 v2 API 추가 * [test] : 답변채택 쿼리 개수 개선 v2 단위테스트 추가 * [test] : 답변채택 쿼리 개수 개선 v2 통합테스트 추가 * [�Refactor #151] JWT Subject 개인정보 제거 (#154) * [refactor] JWT 생성 로직 변경 - JWT 생성시 subject에 개인정보(이메일)이 아닌 PK값이 들어가도록 변경 - 검증 토큰을 이용한 인증 객체 생성 시 subject 이메일 -> PK 변경에 따라 PK로 회원 찾도록 변경 * [refactor] : 토큰 generate 메서드 파라미터 변경으로 인한 리팩토링 * [refactor] : 토큰 generate 메서드 파라미터 변경으로 인한 리팩토링 * [refactor] : 토큰 generate 메서드 파라미터 변경으로 인한 리팩토링 * [refactor #156] 채팅 요청 목록 API에서 채팅 파트너 조회 로직 리팩토링 (#157) * [feat] : 채팅 요청에 createdAt 필드 추가 * [feat] : 채팅 요청 테스트 픽스쳐에 createdAt 추가 * [feat] : 채팅 파트너 구하는 로직 DTO에 추가 * [refactor] : 채팅 파트너 구하는 로직 DTO로 이동 * [style] : 코드 리포멧팅 * [test] : createdAt 포함된 testFixture 사용 * [refactor] : V1, V2 통합 * [test] : V1, V2 통합에 따른 테스트 코드 삭제 * [feat #158] 채팅 요청 상세 조회 API (#159) * [feat] : 채팅 요청 상세 조회 응답 추가 * [feat] : 채팅 요청 상세 조회 비즈니스 로직 추가 * [feat] : 채팅 요청 상세 조회 비즈니스 로직 테스트 * [feat] : 채팅 요청 상세 조회 API 메서드 추가 * [test] : 채팅 요청 상세 조회 API 메서드 테스트 * [feat] : 채팅 요청 API pk 필드명 수정 * [rename] : memberInfo DTO 위치 이동 * [remove] : 불필요한 예외 로직 처리 삭제 * [refactor] : 채팅 파트너 구하는 로직 도메인으로 이동 * [refactor] : 채팅 파트너 구하는 로직 mapper가 아닌 서비스 내에서 호출 * [style] : 코드 리포멧팅 * [style] : 줄바꿈 취소 * [test] : V1, V2 통합에 따른 테스트 코드 수정 * [feat] : QuestionPost 단건조회 메서드 추가 * [test]: 정합성 테스트 disabled 처리 * [refactor]: fetch join 함수 repository로 이동 --------- Co-authored-by: Son Gahyun <[email protected]> Co-authored-by: hs12 <[email protected]>
- Loading branch information
1 parent
26bfa04
commit 1dd4523
Showing
8 changed files
with
143 additions
and
17 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
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
28 changes: 28 additions & 0 deletions
28
src/main/java/com/dnd/gongmuin/answer/repository/AnswerSimpleQueryRepository.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,28 @@ | ||
package com.dnd.gongmuin.answer.repository; | ||
|
||
import java.util.Optional; | ||
|
||
import org.springframework.stereotype.Repository; | ||
|
||
import com.dnd.gongmuin.answer.domain.Answer; | ||
|
||
import jakarta.persistence.EntityManager; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Repository | ||
@RequiredArgsConstructor | ||
public class AnswerSimpleQueryRepository { | ||
|
||
private final EntityManager em; | ||
|
||
public Optional<Answer> findAnswerById(Long answerId) { | ||
Answer answer = em.createQuery( | ||
"select a from Answer a" + | ||
" join fetch a.member m" + | ||
" where a.id = :answerId", Answer.class | ||
) | ||
.setParameter("answerId", answerId) | ||
.getSingleResult(); | ||
return Optional.of(answer); | ||
} | ||
} |
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: 1 addition & 3 deletions
4
src/main/java/com/dnd/gongmuin/chat_inquiry/dto/ChatInquiryResponse.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
28 changes: 28 additions & 0 deletions
28
...ain/java/com/dnd/gongmuin/question_post/repository/QuestionPostSimpleQueryRepository.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,28 @@ | ||
package com.dnd.gongmuin.question_post.repository; | ||
|
||
import java.util.Optional; | ||
|
||
import org.springframework.stereotype.Repository; | ||
|
||
import com.dnd.gongmuin.question_post.domain.QuestionPost; | ||
|
||
import jakarta.persistence.EntityManager; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Repository | ||
@RequiredArgsConstructor | ||
public class QuestionPostSimpleQueryRepository { | ||
|
||
private final EntityManager em; | ||
|
||
public Optional<QuestionPost> findQuestionPostById(Long questionPostId) { | ||
QuestionPost questionPost = em.createQuery( | ||
"select q from QuestionPost q" + | ||
" join fetch q.member m" + | ||
" where q.id = :questionPostId", QuestionPost.class | ||
) | ||
.setParameter("questionPostId", questionPostId) | ||
.getSingleResult(); | ||
return Optional.of(questionPost); | ||
} | ||
} |
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