-
Notifications
You must be signed in to change notification settings - Fork 0
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
Refactor/#83 problem 조회 쿼리 개선 및 코드 리팩토링 #95
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7903a20
[refactor/#83] 문제 조회 fetchjoin
sejoon00 7cca368
[refactor/#83] 서버 스레드 개수 조절 설정
sejoon00 346a57c
Merge pull request #87 from team-MoPlus/develop
sejoon00 0dc16bc
Merge pull request #88 from team-MoPlus/develop
sejoon00 94fd5b0
Merge pull request #89 from team-MoPlus/develop
sejoon00 9662220
Merge remote-tracking branch 'origin/develop' into refactor/#83
sejoon00 eba2a63
[refactor] N+1 문제 해결
sejoon00 0d7480b
[refactor/#83] problem, childproblem 코드 리팩토링
sejoon00 6df4aab
[refactor/#83] 모든 환경에 datasource 설정 적용
sejoon00 123708f
Merge branch 'develop'
seokbeom00 cb2489d
Merge remote-tracking branch 'origin/master' into refactor/#83
sejoon00 dd0ed5e
[refactor/#83] 컨플릭트 해결
sejoon00 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
53 changes: 53 additions & 0 deletions
53
src/main/generated/com/moplus/moplus_server/client/submit/domain/QChildProblemSubmit.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,53 @@ | ||
package com.moplus.moplus_server.client.submit.domain; | ||
|
||
import static com.querydsl.core.types.PathMetadataFactory.*; | ||
|
||
import com.querydsl.core.types.dsl.*; | ||
|
||
import com.querydsl.core.types.PathMetadata; | ||
import javax.annotation.processing.Generated; | ||
import com.querydsl.core.types.Path; | ||
|
||
|
||
/** | ||
* QChildProblemSubmit is a Querydsl query type for ChildProblemSubmit | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QChildProblemSubmit extends EntityPathBase<ChildProblemSubmit> { | ||
|
||
private static final long serialVersionUID = -1656142683L; | ||
|
||
public static final QChildProblemSubmit childProblemSubmit = new QChildProblemSubmit("childProblemSubmit"); | ||
|
||
public final com.moplus.moplus_server.global.common.QBaseEntity _super = new com.moplus.moplus_server.global.common.QBaseEntity(this); | ||
|
||
public final NumberPath<Long> childProblemId = createNumber("childProblemId", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final NumberPath<Long> memberId = createNumber("memberId", Long.class); | ||
|
||
public final NumberPath<Long> publishId = createNumber("publishId", Long.class); | ||
|
||
public final EnumPath<ChildProblemSubmitStatus> status = createEnum("status", ChildProblemSubmitStatus.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> updatedDate = _super.updatedDate; | ||
|
||
public QChildProblemSubmit(String variable) { | ||
super(ChildProblemSubmit.class, forVariable(variable)); | ||
} | ||
|
||
public QChildProblemSubmit(Path<? extends ChildProblemSubmit> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QChildProblemSubmit(PathMetadata metadata) { | ||
super(ChildProblemSubmit.class, metadata); | ||
} | ||
|
||
} | ||
|
53 changes: 53 additions & 0 deletions
53
src/main/generated/com/moplus/moplus_server/client/submit/domain/QProblemSubmit.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,53 @@ | ||
package com.moplus.moplus_server.client.submit.domain; | ||
|
||
import static com.querydsl.core.types.PathMetadataFactory.*; | ||
|
||
import com.querydsl.core.types.dsl.*; | ||
|
||
import com.querydsl.core.types.PathMetadata; | ||
import javax.annotation.processing.Generated; | ||
import com.querydsl.core.types.Path; | ||
|
||
|
||
/** | ||
* QProblemSubmit is a Querydsl query type for ProblemSubmit | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QProblemSubmit extends EntityPathBase<ProblemSubmit> { | ||
|
||
private static final long serialVersionUID = 1682818189L; | ||
|
||
public static final QProblemSubmit problemSubmit = new QProblemSubmit("problemSubmit"); | ||
|
||
public final com.moplus.moplus_server.global.common.QBaseEntity _super = new com.moplus.moplus_server.global.common.QBaseEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final NumberPath<Long> memberId = createNumber("memberId", Long.class); | ||
|
||
public final NumberPath<Long> problemId = createNumber("problemId", Long.class); | ||
|
||
public final NumberPath<Long> publishId = createNumber("publishId", Long.class); | ||
|
||
public final EnumPath<ProblemSubmitStatus> status = createEnum("status", ProblemSubmitStatus.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> updatedDate = _super.updatedDate; | ||
|
||
public QProblemSubmit(String variable) { | ||
super(ProblemSubmit.class, forVariable(variable)); | ||
} | ||
|
||
public QProblemSubmit(Path<? extends ProblemSubmit> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QProblemSubmit(PathMetadata metadata) { | ||
super(ProblemSubmit.class, metadata); | ||
} | ||
|
||
} | ||
|
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
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
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
49 changes: 49 additions & 0 deletions
49
...ain/generated/com/moplus/moplus_server/statistic/member/QCorrectConceptTagStatistics.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,49 @@ | ||
package com.moplus.moplus_server.statistic.member; | ||
|
||
import static com.querydsl.core.types.PathMetadataFactory.*; | ||
|
||
import com.querydsl.core.types.dsl.*; | ||
|
||
import com.querydsl.core.types.PathMetadata; | ||
import javax.annotation.processing.Generated; | ||
import com.querydsl.core.types.Path; | ||
|
||
|
||
/** | ||
* QCorrectConceptTagStatistics is a Querydsl query type for CorrectConceptTagStatistics | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QCorrectConceptTagStatistics extends EntityPathBase<CorrectConceptTagStatistics> { | ||
|
||
private static final long serialVersionUID = -313521578L; | ||
|
||
public static final QCorrectConceptTagStatistics correctConceptTagStatistics = new QCorrectConceptTagStatistics("correctConceptTagStatistics"); | ||
|
||
public final com.moplus.moplus_server.global.common.QBaseEntity _super = new com.moplus.moplus_server.global.common.QBaseEntity(this); | ||
|
||
public final NumberPath<Long> conceptTagId = createNumber("conceptTagId", Long.class); | ||
|
||
public final NumberPath<Integer> correctCount = createNumber("correctCount", Integer.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> updatedDate = _super.updatedDate; | ||
|
||
public QCorrectConceptTagStatistics(String variable) { | ||
super(CorrectConceptTagStatistics.class, forVariable(variable)); | ||
} | ||
|
||
public QCorrectConceptTagStatistics(Path<? extends CorrectConceptTagStatistics> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QCorrectConceptTagStatistics(PathMetadata metadata) { | ||
super(CorrectConceptTagStatistics.class, metadata); | ||
} | ||
|
||
} | ||
|
49 changes: 49 additions & 0 deletions
49
...n/generated/com/moplus/moplus_server/statistic/member/QIncorrectConceptTagStatistics.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,49 @@ | ||
package com.moplus.moplus_server.statistic.member; | ||
|
||
import static com.querydsl.core.types.PathMetadataFactory.*; | ||
|
||
import com.querydsl.core.types.dsl.*; | ||
|
||
import com.querydsl.core.types.PathMetadata; | ||
import javax.annotation.processing.Generated; | ||
import com.querydsl.core.types.Path; | ||
|
||
|
||
/** | ||
* QIncorrectConceptTagStatistics is a Querydsl query type for IncorrectConceptTagStatistics | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QIncorrectConceptTagStatistics extends EntityPathBase<IncorrectConceptTagStatistics> { | ||
|
||
private static final long serialVersionUID = 1288752209L; | ||
|
||
public static final QIncorrectConceptTagStatistics incorrectConceptTagStatistics = new QIncorrectConceptTagStatistics("incorrectConceptTagStatistics"); | ||
|
||
public final com.moplus.moplus_server.global.common.QBaseEntity _super = new com.moplus.moplus_server.global.common.QBaseEntity(this); | ||
|
||
public final NumberPath<Long> conceptTagId = createNumber("conceptTagId", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final NumberPath<Integer> incorrectCount = createNumber("incorrectCount", Integer.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> updatedDate = _super.updatedDate; | ||
|
||
public QIncorrectConceptTagStatistics(String variable) { | ||
super(IncorrectConceptTagStatistics.class, forVariable(variable)); | ||
} | ||
|
||
public QIncorrectConceptTagStatistics(Path<? extends IncorrectConceptTagStatistics> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QIncorrectConceptTagStatistics(PathMetadata metadata) { | ||
super(IncorrectConceptTagStatistics.class, metadata); | ||
} | ||
|
||
} | ||
|
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
그럼 hibernate6부터는 해당 distinct를 제거해도 내부적으로 추가되는 걸까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 맞습니다