| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- datasource
- git
- springboot
- github
- ubuntu
- log4j2
- Spring Boot
- hikari
- between 날짜
- Spring
- mybatis
- hikaricp
- Linux
- log4j profile
- oracle
- Spring Security
- 라즈베리파이
- catalina log
- MySQL
- oracle between
- ORACLE CLOUD
- Gradle
- python 개발환경
- template
- Java
- bitbucket
- between date
- intellij
- STS
- 배열스트링
- Today
- Total
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- datasource
- git
- springboot
- github
- ubuntu
- log4j2
- Spring Boot
- hikari
- between 날짜
- Spring
- mybatis
- hikaricp
- Linux
- log4j profile
- oracle
- Spring Security
- 라즈베리파이
- catalina log
- MySQL
- oracle between
- ORACLE CLOUD
- Gradle
- python 개발환경
- template
- Java
- bitbucket
- between date
- intellij
- STS
- 배열스트링
- Today
- Total
목록전체 글 (63)
파워노트
##### index 생성 curl -XPUT 'localhost:9200/customer?pretty' #index 생성 및 id document 생성 curl -XPOST 'localhost:9200/customer2/info/1?pretty' -H 'Content-Type: application/json' -d '{ "name": "victolee" }' # id 가 없는 경우 임의의 id 생성 curl -XPOST 'localhost:9200/customer2/info?pretty' -H 'Content-Type: application/json' -d '{ "name": "victolee2" }' # File생성이후 File load하여 document 생성. vi data.json { "name..
* 부팅시 오래걸리고 네트워크를 잡지 못하는 문제가 있어 검색을 해보니 리눅스 서비스중에 systemd-networkd-wait-online.service 이런 놈이 있었다. 이놈은 부팅시 대기를 타며 네트웍 상태를 체크를 하는놈 같은데 부팅시간을 상당히 잡아 먹으며 몇분씩 대기를 타는 문제가 있다. 아래와 같은 명령으로 서비스를 끄니 재부팅시 바로 로그인으로 진입한다. 네트워크는 좀 기다리면 잡힐일 ... sudo systemctl disable systemd-networkd-wait-online.service 재부팅 해보니 엄청 빨리 로그인으로 진입함 ~~ ..
* REST ( Representational State Transfer ) - Mage By Roy.Fielding # Rest 란 - 네트워크 아키텍쳐의 원리 모음. - web의 입장에서는 사이트의 구성 원리 정도로 이해 . # Rest 아키텍쳐의 6가지 제한 조건 - 클라이언트 / 서버 구조 - 무상태 ( Stateless ) - 캐시 처리 가능 ( Cacheable ) - 계층화 ( Layered System ) - Code on demand ( optional ) : ex )java script - 인터페이스 일관성 # Rest Api 구조에 대해서 - REST API 에 맞게 구현이 되어 있느냐는 많은 논란을 주는 부분입니다. REST 의 개념을 정리한 Roy.Fieiding 은 보다 엄격한 ..