Skip to content
Merged
Changes from all commits
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
801b7ec
Article Repository Jpa / Query 전용 구분
qowl880 May 28, 2025
bdf0dc6
Article Custom Error Exception 구현
qowl880 May 28, 2025
fe6bd8c
Auditing 설정 추가
qowl880 May 28, 2025
2152da0
Article Create Controller 구현
qowl880 May 28, 2025
454f841
Article Delete Controller 구현
qowl880 May 28, 2025
396cef3
Article Controller CUD 구현
qowl880 May 28, 2025
7747f5a
Comment Repository Jpa / Query 전용 구분
qowl880 May 28, 2025
d4fd8b2
Comment Controller Create 구현
qowl880 May 28, 2025
3750f17
application yml파일 배포/로컬 분리
qowl880 May 28, 2025
309ec68
Article Create Controller 구현
qowl880 May 28, 2025
5835c4f
Article Delete Controller 구현
qowl880 May 28, 2025
a7e7a27
Article Controller CUD 구현
qowl880 May 28, 2025
86e59f9
application.yml 통합
qowl880 May 28, 2025
e9ee804
Article Repository 설정
qowl880 Jun 3, 2025
13854f0
Comment Error Exception 생성
qowl880 Jun 4, 2025
e600d50
구조 변경
qowl880 Jun 4, 2025
c7176bd
Comment Read 전용 Dao 생성
qowl880 Jun 4, 2025
85b2068
application yml파일 배포/로컬 분리
qowl880 May 28, 2025
86fc587
Article Repository Jpa / Query 전용 구분
qowl880 May 28, 2025
2630513
Article Create Controller 구현
qowl880 May 28, 2025
0dee76d
Article Delete Controller 구현
qowl880 May 28, 2025
71120a9
Article Controller CUD 구현
qowl880 May 28, 2025
70cda7b
application.yml 통합
qowl880 May 28, 2025
359edc2
Article Repository 설정
qowl880 Jun 3, 2025
7d1f5d1
개행 추가
qowl880 Jun 6, 2025
04a5816
ErrorException 통합
qowl880 Jun 8, 2025
705a525
Dao -> QueryResult 파일명 변경
qowl880 Jun 8, 2025
869933b
Update IdolApplication.java
qowl880 Jun 10, 2025
14a244d
유저 인증 검사 추가
qowl880 Jun 14, 2025
762541d
Article Entity 구현
qowl880 May 28, 2025
3f72226
Article Repository Jpa / Query 전용 구분
qowl880 May 28, 2025
98c77a5
Article Custom Error Exception 구현
qowl880 May 28, 2025
9300fea
Auditing 설정 추가
qowl880 May 28, 2025
e2926c7
Article Create Controller 구현
qowl880 May 28, 2025
8e39029
Article Delete Controller 구현
qowl880 May 28, 2025
57ee0e4
Article Controller CUD 구현
qowl880 May 28, 2025
a70f8d9
S3 관련 이미지 업로드 및 호출 기능 구현
qowl880 May 28, 2025
e6e27a0
Comment Repository Jpa / Query 전용 구분
qowl880 May 28, 2025
eb956a1
Comment Controller Create 구현
qowl880 May 28, 2025
2f9ab08
application yml파일 배포/로컬 분리
qowl880 May 28, 2025
dc29f88
Article Create Controller 구현
qowl880 May 28, 2025
bf64b32
Article Delete Controller 구현
qowl880 May 28, 2025
1e39ab4
Article Controller CUD 구현
qowl880 May 28, 2025
a8bdcf3
application.yml 통합
qowl880 May 28, 2025
f40c4b9
Article Repository 설정
qowl880 Jun 3, 2025
9fdfb98
Comment Error Exception 생성
qowl880 Jun 4, 2025
89326d2
구조 변경
qowl880 Jun 4, 2025
d310bcd
Comment Read 전용 Dao 생성
qowl880 Jun 4, 2025
d9c82b6
application yml파일 배포/로컬 분리
qowl880 May 28, 2025
b83d8be
Article Repository Jpa / Query 전용 구분
qowl880 May 28, 2025
eb7c2cd
Article Create Controller 구현
qowl880 May 28, 2025
fece12b
Article Delete Controller 구현
qowl880 May 28, 2025
0dba451
Article Controller CUD 구현
qowl880 May 28, 2025
0a53a23
application.yml 통합
qowl880 May 28, 2025
f1e345f
SoftDelete 추가
qowl880 Jun 3, 2025
9109b37
Article Repository 설정
qowl880 Jun 3, 2025
ae823c6
개행 추가
qowl880 Jun 6, 2025
945caaf
ErrorException 통합
qowl880 Jun 8, 2025
9911f0b
Dao -> QueryResult 파일명 변경
qowl880 Jun 8, 2025
c09af92
S3 의존성 변경에 따른 구조 변경
qowl880 Jun 8, 2025
d82ef10
Update IdolApplication.java
qowl880 Jun 10, 2025
b4ef511
유저 인증 검사 추가
qowl880 Jun 14, 2025
84840ad
@Where 삭제
qowl880 Jun 17, 2025
890b0a4
오류로 인한 주석처리
qowl880 Jun 18, 2025
ab156e8
aws 관련 설정 추가
qowl880 Jun 19, 2025
c109bfb
Transactional 추가
qowl880 Jun 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class ReadArticleService implements ReadArticleUseCase {
private final WishRepository wishRepository;

@Override

@Transactional(readOnly = true)
public ArticleReadResponseDto readArticle(Long articleId, Long userId) {
Article article = articleRepository.findByArticleId(articleId)
.orElseThrow(() -> new NotFoundException("Article", articleId));
Expand Down Expand Up @@ -94,6 +94,7 @@ public ArticleReadResponseDto readArticle(Long articleId, Long userId) {


@Override
@Transactional(readOnly = true)
public List<ArticleListImgResponseDto> searchArticleList(
BigCategory bigCategory, SmallCategory smallCategory, String location,
Long date, String sort, boolean sortAsc, Long limit, Long page, Long memberId) {
Expand Down