백엔드287 [spring] Jsoup HTTP error fetching URL. Status=405 Jsoup 을 이용해 크롤링을 하던 중 다음과 같은 에러가 발생했다. Jsoup HTTP error fetching URL. Status=405 해결방법으로는 Jsoup connect 에서 POST를 사용중이였다면 GET으로 변경해준다. 기존코드 Connection.Response response = Jsoup.connect(link).method(Connection.Method.POST).execute(); 변경코드 Connection.Response response = Jsoup.connect(link).method(Connection.Method.GET).execute(); 2021. 12. 10. [nodejs] error cannot find module 'config' src/app.ts 에서 import config 를 사용하려는데 모듈을 찾을 수 없다고 나왔다. config package 를 설치해준다 npm i config 2021. 12. 9. typescript 설치 및 환경설정 타입스크립트 설치하기 npm install -g typescript 버전확인하기 tsc -v 패키지를 생성하기위해 아래 명령어를 사용한다. package.json 과 tsconfig.json이 생성된다. npm init -y tsc -- init express 설치한다. npm install express 데브 의존성, 노드몬 설치 npm i -D typescript ts-node nodemon @types/node @types/express 아래 사이트에서 @types 를 검색해서 사용하면 된다 https://www.typescriptlang.org/dt/search?search= Search for typed packages Find npm packages that have type declarati.. 2021. 12. 7. postgresql sequence 시퀀스 만들기 시퀀스 생성 시퀀스 지우기 시퀀스 시작 숫자 변경하기 create sequence seq_source; drop sequence seq_source; ALTER SEQUENCE seq_source restart with 2; 2021. 12. 7. [python] Please use the NLTK Downloader to obtain the resource nltk 를 import 해서 사용하는데 다음과 같은 에러가 나오면서 nltk 사용이 되지 않았다. 아래 명령어로 nltk 패키지를 사용하면된다. import nltk nltk.download() 위의 명령어를 사용하면 아래 이미지처럼 옵션을 선택하기 위해 입력을 계속해줘야하는데 나의 경우 입력을 하지 않게하기위해 모든 패키지를 설치해 주었다. python -m nltk.downloader all 2021. 11. 26. StringBuilder & System.out.println() StringBuilder 출력할 데이터를 모아서 한번에 출력 String 보다 쉽게 문자열 처리 가능 StringBuilder output = new StringBuilder(); BufferedReader reader = new BufferedReader( new InputStreamReader(process.getInputStream())); String line; while ((line = reader.readLine()) != null) { output.append(line); System.out.println(">>> " + line); } System.out.println("output >> " + output.toString()); 2021. 11. 24. 이전 1 ··· 23 24 25 26 27 28 29 ··· 48 다음