Skip to content

Commit

Permalink
๐Ÿš‘ ๊ธด๊ธ‰ ์ˆ˜์ • : ์‚ฌ๋žŒ์ธ API NULL CHECK ERROR
Browse files Browse the repository at this point in the history
  • Loading branch information
hanseu9839 committed Dec 18, 2024
1 parent 1a50725 commit 204218d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ private boolean checkNotEquals(JobInfo dbJobInfo, JobInfo apiJobInfo) {
|| !dbJobInfo.getTitle().equals(apiJobInfo.getTitle()) // ์ œ๋ชฉ ํ•„๋“œ ๋น„๊ต
|| !dbJobInfo.getIndustryCode().equals(apiJobInfo.getIndustryCode()) // ์‚ฐ์—… ์ฝ”๋“œ ๋น„๊ต
|| !dbJobInfo.getIndustryName().equals(apiJobInfo.getIndustryName()) // ์‚ฐ์—… ์ด๋ฆ„ ๋น„๊ต
|| !dbJobInfo.getLocationName().equals(apiJobInfo.getLocationName()) // ์œ„์น˜ ์ด๋ฆ„ ๋น„๊ต
|| !dbJobInfo.getJobMidCode().equals(apiJobInfo.getJobMidCode()) // ์ค‘๊ฐ„ ์ง๋ฌด ์ฝ”๋“œ ๋น„๊ต
|| !dbJobInfo.getJobMidName().equals(apiJobInfo.getJobMidName()) // ์ค‘๊ฐ„ ์ง๋ฌด ์ด๋ฆ„ ๋น„๊ต
|| !dbJobInfo.getJobName().equals(apiJobInfo.getJobName()) // ์ง๋ฌด ์ด๋ฆ„ ๋น„๊ต
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import java.util.*;
import java.util.stream.Collectors;

@Slf4j
@Service
@Transactional
@RequiredArgsConstructor
public class JobInfoConnectServiceImpl implements JobInfoConnectService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ public void schoolInfoInsert(){

log.info("==== ์ž‘์—… ์ข…๋ฃŒ ====");
}

}

0 comments on commit 204218d

Please sign in to comment.