본문 바로가기
728x90
반응형

0254

[Error] 'Publishing to Tomcat v8.5 Server at localhost...' has encountered a problem. 스프링 톰캣 오류 이미실행중인 톰캣서버를 삭제해준다. .https://qh5944.tistory.com/90 [Error] 'Publishing to Tomcat v8.5 Server at localhost...' has encountered a problem. 스프링 톰캣 오류 해결 오류 내용 'Publishing to Tomcat v8.5 Server at localhost...' has encountered a problem. Could not publish server configuration for Tomcat v8.5 Server at localhost. Multiple Contexts have a pa.. qh5944.tistory.com 2021. 8. 29.
[게시판] mysql과 연동하기. 시퀀스문제 오라클에서는 시퀀스기능이 있지만, mysql엔 없다. 그래서.. auto_increment란걸 써야한다. 기존에 만들었던 테이블이 오라클에 기반한 코드라,, 테스트돌리니 자꾸 에러가 떴다. 1. 테이블을 삭제하고 다시 만들어줌. (auto_increment사용) 2. sts코드를 수정해줌 create table tbl_board ( bno int primary key auto_increment, title varchar(200) not null, content varchar(2000) not null, writer varchar(50) not null, regdate datetime default current_timestamp, updatedate datetime default current_times.. 2021. 8. 27.
ERROR: Missing artifact javax.servlet:servlet-api:jar:3.1.0 servlet이 3.0 이상부터 아래와 같이 artifactId가 변경되었다. servlet-api -> javax.servlet-api https://moon1226.tistory.com/82 Spring - Missing artifact javax.servlet:servlet-api:jar:3.1.0 보통 spring project를 만들면 pom.xml에 servlet 버전이 2.5로 되어있다. 하지만 버전을 올리면 추가적으로 사용할 수 있는 메소드들이 있어서, 좀더 원할한 개발을 위해 3.0이상으로 수정하기도 한다. 그 moon1226.tistory.com 2021. 8. 22.
[mysql] MySQL 계정 생성 관리 및 권한설정 https://2dubbing.tistory.com/13 MySQL 계정 생성 관리 및 권한설정 이번 포스팅은 MySQL 접속 계정 관리 와 계정 별 권한설정 방법에 대해 알아보겠습니다. 본문에서 다루는 MySQL 버전은 5.6 버전이며 5.7 버전부터 일부 변경 된 사항이 있으므로 참고바랍니다! mysql - 2dubbing.tistory.com 2021. 8. 22.
[Spring] Log4j cannot be resolved to a type 에러 해결법은 pom.xml에서 에 해당하는 코드 가장마지막에있는 log4j의 의존성에 runtime를 주석처리 해주면 된다. 출처: https://stajun.tistory.com/entry/Log4j에서-log에-에러-발생-시-해결방안 [내숭이] 2021. 8. 19.
[scrapping] 페이지를 긁어보자. (2)_무신사추천상품 무신사 반팔티 카테고리에서 무신사 추천순으로 나오는 해당 제품들의 정보를 긁어와 보자. 1. 브랜드명/상품명/가격을 가져와 보자. 2. 인덱스를 순위로 맞추고, 20위까지로 잘라보자. 1. 브랜드명/상품명/가격을 가져와 보자. from bs4 import BeautifulSoup from urllib.request import urlopen #해당 url을 오픈합니다. html=urlopen("https://search.musinsa.com/category/001001") bsObject = BeautifulSoup(html, "html.parser") print(bsObject) #상품들의 정보가 담긴 li_box를 모두 가져옵니다. item_list = bsObject.findAll('li',{'cl.. 2021. 7. 28.
728x90
반응형