Skip to content

Commit

Permalink
hotfix: okky
Browse files Browse the repository at this point in the history
  • Loading branch information
in-seo committed Nov 27, 2024
1 parent e44cc1d commit 93b8486
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public void getOkkyPostData() {
driver.get(urlOkky + "?page=" + Page);
String html = driver.getPageSource();
Document doc = Jsoup.parse(html);
for (int i = 22; i > 0; i--) { //오래된 글부터 크롤링 그럼 반드시 최신글은 DB에서 가장 밑에꺼임.
if(i==1 || i==6)
for (int i = 23; i > 0; i--) { //오래된 글부터 크롤링 그럼 반드시 최신글은 DB에서 가장 밑에꺼임.
if(i==1 || i==2|| i==8) // 공지 제거
continue;
Elements element = doc.select("#__next > main > div > div:nth-child(2) > div > div:nth-child(5) > div > ul > li:nth-child(" + i + ")");
Elements title = element.select("div > div.my-2 > a");
Expand Down Expand Up @@ -99,7 +99,7 @@ private int startPage(WebDriver driver, int start) throws StringIndexOutOfBounds
* 디비에서 저장된 가장 최근 글이 1페이지에 있나 여부 판단. 만약 글 리젠이 많아서 2페이지 중반부터 크롤링 해야되면? 3페이지 첫글이 start보다 작아야 됌.
* !!다음 페이지의 맨 첫 번째 글이, 가장 최근에 디비에 저장된 글의 번호보다 크면 다음 페이지로 넘어가야됌
*/
int cnt = 2;
int cnt = 3;
while(true){
if (page > 5 || cnt > 6) {
SlackNotifier slackNotifier = new SlackNotifier();
Expand Down

0 comments on commit 93b8486

Please sign in to comment.