분류 전체보기
-
[ 파이썬 ] 웹페이지 크롤링 방법program_language 및 궁금한것/R 빅데이터 2019. 12. 21. 19:50
for x in categorys: print(x.text) 주피터 노트북에서 아래 작업을 해준다. from bs4 import BeautifulSoup as bs import requests as req url = '원하는 url'; resp = req.get(url) 브라우저에 보이는 화면을 parseHtml로 가져온다. soup 변수에 해당 값을 넣어준다. categorys 변수에 내가 크롤링할 태그를 가져온다. >는 어떤 태그 안의 태그이다. parseHtml=response.text soup=bs(parseHtml, 'html.parser') categorys = soup.select('#by_category > .list-unstyled > li > a') 출력을 해보면 내가 가져오려는 리스트..
-
[ spring boot ] pom.xml의 parent요소, yamlWeb/Spring boot 2019. 12. 15. 21:34
springboot의 pom.xml에는 태그 안에 version이 명시되어 있다. 만약 내가 스프링의 2.2.2버젼을 사용한다면 해당 버젼에 맞는 lib들을 자동으로 불러온다. 2.2.2버젼에 맞는 버젼들은 공식홈 에 있다. spring starter 프로젝트를 생성하면 Application.java라는 파일이 자동 생성된 것을 본 적이 있을 것이다. 이 파일은 애플리케이션의 실제 구동을 담당한다. main메소드가 하나만 존재하는데 이는 자바 애플리케이션이 시작될 때 호출된다. @SpringbootApplication 어노테이션은 세가지의 다른 어노테이션을 캡슐화 하고 있는 최상위 .어노테이션이다. @Configuration , @EnableAutoConfiguration , @ComponentScan ..
-
[springboot] Either processor or processors need to be given errorWeb/Spring boot 2019. 11. 25. 14:19
springboot 에서 maven을 compile할 때 나는 에러이다. 해당 에러는 pom.xml을 수정함으로 해결하였다. 맨 아래 plugin을 잘 확인해 보도록.... 4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.1.RELEASE com.example springboot_jpa 0.0.1-SNAPSHOT springboot_jpa Demo project for Spring Boot 1.8 2.8.0 org.springframework.boot spring-boot-devtools true org.springframework.boot spring-boot-starter-data-jpa io.springfox springfox-swagg..