Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -10,19 +10,10 @@
public class InterestSelectionRequestDto {
private Map<String, List<String>> categorizedInterests;

// 기존 필드 유지
private List<String> selectedInterests;

// categorizedInterests에서 모든 관심사를 추출하는 메소드
public List<String> getAllInterests() {
if (selectedInterests != null) {
return selectedInterests;
}

if (categorizedInterests == null) {
return new ArrayList<>();
}

List<String> allInterests = new ArrayList<>();
categorizedInterests.values().forEach(allInterests::addAll);
return allInterests;
Expand Down
3 changes: 0 additions & 3 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ spring:
order_updates: true
jdbc:
batch_size: 1000
sql:
init:
mode: always # data.sql 실행
profiles:
active: dev, s3Bucket # logback-spring SpringProfile 설정 및 AWS S3 Bucket 설정

Expand Down