일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- high level client
- ELASTIC
- 파이썬
- licence delete curl
- API
- Kafka
- Elasticsearch
- plugin
- license delete
- 차트
- License
- Java
- Python
- token filter test
- flask
- matplotlib
- Test
- 900gle
- sort
- docker
- aggs
- Mac
- zip 파일 암호화
- aggregation
- zip 암호화
- MySQL
- analyzer test
- query
- TensorFlow
- springboot
- Today
- Total
목록Java (8)
개발잡부
Java에서 File 클래스사용 방법 mkdir - 디렉토리 생성 mkdirs - 디렉토리 경로 전체 생성 list - 디렉토리 안의 파일 목록 listFiles - 디렉토리 안의 파일 목록 테스트 해당경로 확인 String dir = "/data/static"; File file = new File(dir); file.list file.listFiles
Specifying Sorting The SearchSourceBuilder allows to add one or more SortBuilder instances. There are four special implementations (Field-, Score-, GeoDistance- and ScriptSortBuilder). 정렬 지정 SearchSourceBuilder 를 사용하면 하나 이상의 SortBuilder 인스턴스 를 추가할 수 있습니다 . 4가지 특수 구현(Field-, Score-, GeoDistance- 및 ScriptSortBuilder)이 있습니다. sourceBuilder.sort(new ScoreSortBuilder().order(SortOrder.DESC)); sourceBu..
package com.bbongdoo.doo.keyword; import com.bbongdoo.doo.domain.Keywords; import com.bbongdoo.doo.domain.KeywordsRepository; import com.bbongdoo.doo.service.KeywordsService; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context..
https://aragost.com/blog/java/picocli-introduction/ Picocli introduction This is an introduction to creating user-friendly command-line interfaces to Java applications with the picocli framework. aragost.com maven pom.xml info.picocli picocli 4.5.1 gradle gradle.build // https://mvnrepository.com/artifact/info.picocli/picocli-spring-boot-starter implementation group: 'info.picocli', name: 'picoc..
https://help.sonatype.com/repomanager3/product-information/download Download Nexus Repository OSS is distributed with Sencha Ext JS pursuant to a FLOSS Exception agreed upon between Sonatype, Inc. and Sencha Inc. Sencha Ext JS is licensed under GPL v3 and cannot be redistributed as part of a closed source work. help.sonatype.com https://learn.sonatype.com/courses/nxrm-config-100/lessons/installi..
동적으로 생성되는 웹페이지 (mathpix 사이트) 크롤링을 해야 하는 이슈가 있어서 selenium 으로 크롤링 크롬 드라이버 설치 크롬 버전확인 http://chromedriver.chromium.org/downloads 버전에 맞는 드라이버를 설치 난 맥이니까 chromedriver_mac64.zip 설치 크롬 드라이버를 저장할 위치로 이동시킴 코드를 실행시켰을때 확인되지 않은 어쩌고 문제가 발생하면 크롬드라이버 파일 위치로 이동해서 실행 한번 실행시켜주고 코드 실행
7.15.0 이후로 안나온다는건가.. bulid.gradle 디펜던시 추가 def elasticsearchVersion = '7.12.1' // https://mvnrepository.com/artifact/org.elasticsearch.client/elasticsearch-rest-high-level-client compile group: 'org.elasticsearch.client', name: 'elasticsearch-rest-high-level-client', version: elasticsearchVersion // https://mvnrepository.com/artifact/org.elasticsearch.client/elasticsearch-rest-client compile grou..
에러상태 리턴값 이기.. 이걸.. Exception 이 발생하는 경우 공통으로 처리해보자 import com.etoos.datalake.model.response.CommonResult; import com.etoos.datalake.service.ResponseService; import lombok.RequiredArgsConstructor; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web...