https://hihellloitland.tistory.com/94 Postman 환경 변수( Environments Variables ) 사용하는 방법 REST API 서버를 개발하고 테스트를 해보면서 로컬(local) 환경, 개발(development) 환경, 운영(operation) 환경이 IP 로 나눠져서 매번 collection 을 새롭게 만들다 보니까 변수 처리를 할 수 있는 방법이 없을 hihellloitland.tistory.com
https://devlog.changhee.me/posts/gradle_implementation_vs_api/ Gradle - implementation vs api Gradle 3.0 에서 complie 키워드가 implementation 과 api 두 가지로 분리되었다. devlog.changhee.me implemetation Gradle은 종속성을 컴파일 클래스 경로에 추가하여 종속성을 빌드 출력에 패키징합니다. 다만 모듈이 implementation 종속성을 구성하는 경우, 이것은 Gradle에 개발자가 모듈이 컴파일 시 다른 모듈로 유출되는 것을 원치 않는다는 것을 알려줍니다. 즉, 종속성은 런타임 시 다른 모듈에서만 이용할 수 있습니다. api 또는 compile(지원 중단됨) 대신 이 종..
inline fun ObjectMapper.readValue(json: String): T = readValue(json, object : TypeReference(){}) https://stackoverflow.com/questions/34716697/how-do-i-deserialize-json-into-a-listsometype-with-kotlin-jackson How do I deserialize JSON into a List with Kotlin + Jackson What is the correct syntax to deserialize the following JSON: [ { "id" : "1", "name" : "Blues" }, { "id" : "0", "name" : "Rock" } ..
site-url.naver=https://www.naver.com site-url.google=https:/google.com @Value("${site-url.naver}") private String naver; @Value("${site-url.google}") private String google; @Component @ConfigurationProperties(prefix = "site-url") @Data public class siteUrlProperties { private String naver; private String google; } https://programmer93.tistory.com/47 @ConfigurationProperties 사용법 - 삽질중인 개발자 - @con..
class TestException(message:String): Exception(message) https://stackoverflow.com/questions/45162869/kotlin-throw-custom-exception Kotlin - Throw Custom Exception How can I throw a custom exception in Kotlin? I didn't really get that much off the docs... In the docs, it gets described what each exception needs, but how exactly do I implement it? stackoverflow.com
https://wonit.tistory.com/495 [Spring Cloud] Service Discover Server로 Netflix Eureka 이용하기 Spring Cloud Netflix 스프링 클라우드 넷플릭스는 Spring Boot Application 에 대한 통합 환경 구성을 지원하는 Netflix의 OSS 서비스이다. Netflix는 2007년 심각한 DB손상으로 3일간 서비스 장애를 겼었는데,.. wonit.tistory.com
https://start.spring.io/
https://alternative.me/crypto/fear-and-greed-index/ Crypto Fear & Greed Index - Bitcoin Sentiment The crypto fear & greed index of alternative.me provides an easy overview of the current sentiment of the Bitcoin / crypto market at a glance. alternative.me
@ComponentScan({"com.my.package.first","com.my.package.second"}) https://stackoverflow.com/questions/10794587/how-to-scan-multiple-paths-using-the-componentscan-annotation/10794718#10794718 How to scan multiple paths using the @ComponentScan annotation? I'm using Spring 3.1 and bootstrapping an application using the @Configuration and @ComponentScan attributes. The actual start is done with new ..
# port: host:container docker run -i -t --name mywebserver -p 80:80 ubuntu:14.04 https://captcha.tistory.com/67 03. Docker 포트 바인딩 컨테이너는 가상 머신과 마찬가지로 가상 IP 주소를 할당받는다. 기본적으로 도커는 컨테이너에 172.17.0.x의 IP를 순차적으로 할당 # docker run -i -t --name network_test ubuntu:14.04 # ifconfig - 위 그림.. captcha.tistory.com
https://jaehun2841.github.io/2022/03/10/2022-03-11-spring-cloud-config-polling/#Spring-Scheduler%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94-%EB%AA%A8%EB%93%88%EC%9E%85%EB%8B%88%EB%8B%A4 Spring Cloud Config 주기적으로 Polling 하기 | Carrey`s 기술블로그 들어가며 해당 글에서 사용한 예제의 버전 정보는 아래와 같습니다 kotlin 1.6.0 Spring Boot 2.6.3 Spring Cloud Dependencies 2021.0.1 Spring Cloud Config 관련 글은 총 4개의 글로 작성되었습니다. ConfigCli..
docker network rm $(docker network ls -q) https://stackoverflow.com/questions/56515128/error-pool-overlaps-with-other-one-on-this-address-space-when-starting-my-proje ERROR: Pool overlaps with other one on this address space when starting my_project docker setup I'm trying to setup docker and I`m getting the following error: ERROR: Pool overlaps with other one on this address space What should I..
https://tweety1121.tistory.com/entry/Spring-Cloud-Gateway-Global-Error-Handler Spring Cloud Gateway Global Error Handler ErrorWebExceptionHandler spring-mvc에서는 ErrorController, AbstractErrorController, BasicErrorController가 기본적으로 제공되므로 에러를 핸들링 할 수 있다. Spring-cloud는 webflux 기반이므로 mvc에서.. tweety1121.tistory.com https://supawer0728.github.io/2019/04/04/spring-error-handling/ (Spring Boot)오류 처리에 대해 ..
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, https://iolothebard.tistory.com/513 mysql에서 create_at/updated_at 컬럼 사용하기 오랜만에 mysql 닭질... 별 생각없이 허접한 테이블을 만들어서 brew로 설치한 mariadb로 잘 쓰고 있었는데... CREATE TABLE foo ( ... created_at TIMESTAMP NOT NULL DEF.. iolothebard.tistory.com
$ cat docker-compose.yml version: '3' services: api: image: 'node:6-alpine' environment: - LC_ALL=en_US.UTF-8 https://stackoverflow.com/questions/59946083/how-to-set-sql-server-to-use-en-us-utf-8-in-docker-compose How to set SQL Server to use en_US.UTF-8 in Docker compose I realize in docker SQL Server linux log, default language is set. spid10s The default language (LCID 0) has been set for eng..
>>> lst = ["He", "is", "so", "", "cool"] >>> filter(None, lst) ['He', 'is', 'so', 'cool'] https://stackoverflow.com/questions/16099694/how-to-remove-empty-string-in-a-list How to remove empty string in a list? For example I have a sentence "He is so .... cool!" Then I remove all the punctuation and make it in a list. ["He", "is", "so", "", "cool"] How do I remove or ignore the empty string? stac..
- Total
- Today
- Yesterday
- 메디파크 내과 전문의 의학박사 김영수
- 팔로워 수 세기
- 테슬라 리퍼럴 코드
- 테슬라 추천
- 연애학개론
- wlw
- 인스타그램
- 테슬라 레퍼럴
- 유투브
- 어떻게 능력을 보여줄 것인가?
- follower
- 테슬라
- 테슬라 크레딧 사용
- 테슬라 리퍼럴 코드 혜택
- 클루지
- COUNT
- 테슬라 리퍼럴 코드 생성
- 개리마커스
- 테슬라 레퍼럴 코드 확인
- 책그림
- 모델 Y 레퍼럴
- 테슬라 레퍼럴 적용 확인
- Kluge
- 레퍼럴
- 모델y
- Bot
- 김달
- 할인
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |