Skip to content

Commit

Permalink
Merge branch 'dev' into test
Browse files Browse the repository at this point in the history
  • Loading branch information
gouyeonch committed Oct 18, 2024
2 parents 3bcddaa + e0871dd commit 191e8c0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class NewsLogService {
private final CommentService commentService;
private final RedisService redisService;

@Transactional(readOnly = true)
@Transactional
public CursorResponseDto<List<CommentHistInfoDto>> getNewsWithComment(Long userId, Long cursorId, int size) {
log.info("getNewsWithComment service");

Expand All @@ -64,7 +64,7 @@ public CursorResponseDto<List<CommentHistInfoDto>> getNewsWithComment(Long userI
return CursorResponseDto.fromEntityAndPageInfo(searchNewsDtos, cursorInfoDto);
} // 댓글 단 뉴스 조회

@Transactional(readOnly = true)
@Transactional
public CursorResponseDto<List<NewsInfoDto>> getNewsWithReaction(Long userId, Long cursorId, int size) {
log.info("getNewsWithReaction service");

Expand All @@ -88,7 +88,7 @@ public CursorResponseDto<List<NewsInfoDto>> getNewsWithReaction(Long userId, Lon
return CursorResponseDto.fromEntityAndPageInfo(newsHistList, cursorInfoDto);
} // 감정표현한 뉴스 조회

@Transactional(readOnly = true)
@Transactional
public CursorResponseDto<List<NewsHistInfoDto>> getNewsWithHist(Long userId, Long cursorId, int size) {
log.info("getNewsWithHist service");
log.info("getNewsWithReaction service");
Expand Down

0 comments on commit 191e8c0

Please sign in to comment.