분류 전체보기621 [python] timedelta timedelta는 기간을 표현하기 위해 사용됨 timedelta 객체는 내부적으로 일, 초, 마이크로 초 단위만 저장하기 때문에 위와 같이 해당 정보만 표시됩니다. 파이썬의 날짜/시간 계산은 다른 언어에 비해서 매우 간결하고 직관적인데요. 바로 이 timedelta를 통해 산술/대소 연산자를 사용할 수 있기 때문입니다. 2021. 10. 14. Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. spring boot 처음실행 시 다음과 같은 에러가 났다. Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. application.properties 에 JDBC url 을 추가해준다. [mysql] spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/[DB스키마명]?autoReconnect=true spring.datasource.username=[DB접속Id] spring.datasource.password.. 2021. 10. 7. [python] timestamp 값 년월일로 변환 초단위로 되어 있는 숫자를 년월일로 보기좋게 변경하고자 한다. import time now = time.time() now 값이 1633047334.6881318 출력이 되는데 이 값을 년월일로 보기좋게 변환하고 싶다. import datetime print(datetime.datetime.fromtimestamp(int('1633047334')).strftime('%Y-%m-%d %H:%M:%S')) print(datetime.datetime.fromtimestamp(float('1633047334.6881318')).strftime('%Y-%m-%d %H:%M:%S,%f')) datetime 모듈 로드 후 변수 값을 int 나 float 로 변환한다. 숫자 변환 값에 datetime 모듈의 함수를 적.. 2021. 10. 1. [spring] jsoup으로 사이트 크롤링하기 먼저 Jsoup 을 사용하기 위해서 build.gradle 에 jsoup 내용을 적는다. dependencies { // https://mvnrepository.com/artifact/org.jsoup/jsoup implementation 'org.jsoup:jsoup:1.13.1' } 파라메터로 keyword값을 받아와서 사용한다. 키워드값 가져오는 것은 설명하지 않겠다. > 네이버 기사 import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; @RequestMapping("jsoupcrawler") public String jsoupCrawler(Model model, @Reques.. 2021. 9. 30. [jquery] jquery 시작하기 - document ready function 둘이 같은 기능이다. $(document).ready(function(){ //실행할 코드 }); $(function() { //실행할 코드 }); 2021. 9. 29. 주소가 다른 서버에서 서버로 파일 전송 scp -r 옵션 : 여러파일을 포함하고 있을때 -r 옵션 사용 # 다른서버로 보내기(옮기기) scp –r [파일위치]/[보내는 사람 파일경로] root@[서버주소]:[파일위치]/[받는사람 파일경로] ex) 23서버에 접속한 상태에서 22번 서버에 파일을 전송할 때 scp –r /home/000idc-server/test.csv root@192.168.xx.xx:/home/000idc-server/dir/ #다른서버에서 가져오기 scp –r root@[서버주소]:[파일위치]/[보내는 사람 파일경로] [파일위치]/[받는사람 파일경로] ex) 23서버에 접속한 상태에서 22번의 파일을 가져오고자 할 때 scp –r root@192.168.xx.xx:/home/000idc-server/test.csv /home/00.. 2021. 9. 29. 이전 1 ··· 56 57 58 59 60 61 62 ··· 104 다음