-
Notifications
You must be signed in to change notification settings - Fork 1
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
YEL-214 [setting/feat] spring batch setting & lunch event 스케줄링 구현 #463
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4447168
YEL-214 [setting] spring batch setting
hyeonjeongs b025439
YEL-214 [setting] spring batch setting
hyeonjeongs 926afde
YEL-214 [feat] lunch event push alarm
hyeonjeongs f2b6438
YEL-214 [feat] lunch event spring batch, scheduler 연결
hyeonjeongs c895a0b
YEL-214 [feat] 투표 열람시 보낸사람에게 푸시알림
hyeonjeongs d8b09d0
YEL-214 [fix] 오류 해결
hyeonjeongs a888fe5
YEL-214 [fix] 투표시 갑자기 탈퇴한 회원 투표는 반영되지 않도록 구현
hyeonjeongs 2996d45
YEL-214 [fix] vote repository
hyeonjeongs daa06e8
YEL-214 [fix] vote repository
hyeonjeongs 4b4a5c4
YEL-214 [fix] vote 테스트
hyeonjeongs 01f65ca
YEL-214 [feat] 추천인코드 가입시 열람권 지급 푸시알림 구현
hyeonjeongs 4b94592
YEL-214 [feat] 푸시알림 구현 및 unit test
hyeonjeongs a127d97
YEL-214 [setting] YEL-214 [fix] 스프링 배치이슈
hyeonjeongs 03a9898
YEL-214 [feat] spring batch reader 되지 않는 이슈 해결
hyeonjeongs a5f02fb
YEL-214 [feat] formatting
hyeonjeongs 82547af
YEL-214 [feat] formatting
hyeonjeongs 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
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
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
20 changes: 20 additions & 0 deletions
20
src/main/java/com/yello/server/infrastructure/batch/ChunkProcessor.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,20 @@ | ||
package com.yello.server.infrastructure.batch; | ||
|
||
|
||
import com.yello.server.domain.user.entity.User; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.batch.item.ItemProcessor; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
@RequiredArgsConstructor | ||
@Configuration | ||
public class ChunkProcessor { | ||
public ItemProcessor<User, User> lunchEventProcessor() { | ||
ItemProcessor<User, User> item = user -> { | ||
System.out.println(user.getId() + ", " + user.getName() + " dds121212"); | ||
return user; | ||
}; | ||
return item; | ||
} | ||
|
||
} |
Oops, something went wrong.
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.
차후 삭제해주세요~!