반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- node
- PostgreSQL
- codedeploy error
- AWS CI/CD 구축하기
- 도커
- chartjs
- or some instances in your deployment group are experiencing problems.
- Flux
- java bigdecimal
- aws
- kubeflow
- Airflow
- codebuild
- COALESCE
- Spring
- bootstrap
- VPN
- IntelliJ
- SQL
- chart.js
- codepipeline
- docker
- codedeploy
- aws cicd
- Python
- Jenkins
- Kafka
- redis
- JavaScript
- Spring Error
Archives
- Today
- Total
목록Jsoup HTTP error fetching URL. Status=405 (1)
Small Asteroid Blog
[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();
백엔드/Spring
2021. 12. 10. 10:23