Shell Script
linuxsig.org/files/bash_scripting.html Table 1: Built-in shell variables. Variable Use $# Stores the number of command-l...
linuxsig.org/files/bash_scripting.html Table 1: Built-in shell variables. Variable Use $# Stores the number of command-l...
retrieve() retrieve() vs exchange() docs.spring.io/spring-framework/docs/5.3.0-SNAPSHOT/spring-framework-reference/web-reactive.html#webflux-client-exchange Unlike retrieve(), when using excha...
WebClient vs. RestTemplate 왜 WebClient ?: RestTemplate은 deprecated 예정. docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/client/RestTemplate.html [!info] As of 5...
JobParameter 불러오기 @JobScope @Bean fun jobListener( // 방법 1. @Value 애너테이션으로 불러온다. @Value("#{jobParameters[fileName]}") fileName: String?, ): JobExecutionListener { return object : JobEx...
https://dba.stackexchange.com/questions/42997/longest-prefix-search-in-oracle https://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:4246230700346756268 일단… 쿼리 하나로 해결하자면 이렇게도 가능은...
class KakaoAuthHelper { companion object { const val REDIRECT_URI = "http://webpage-observer" val AUTHZ_CODE_URL = "https://kauth.kakao.com/oauth/authorize?client_id=${Kakao...
최근 알 수 없는 이유로 운영 서버에 응답 지연 현상이 발생했었는데요, 특정 request 수신 시 spring-webmvc 5.2.4 이하 버전에서 발생하는 것으로 밝혀졌습니다. 응답지연 현상 분석 결과, 재현 방안, 대응책 공유 상황 11/27 보안 스캐닝 진행 중 API-A 서버에서 응답지연 발생 보안스캐닝 중지 후에도 응답지연 지속...
Pull Request decoration 기능? 이런 기능 (구버전) PR 시 changes만 가져와서 sonarqube 돌리고 이를 PR 댓글로 리포팅해주는 기능. SonarQube v7.2부터는 유료(Developer Edition)로 바뀜. 7.1 까진 무료 버전에서도 플러그인 형태로 제공. https://...
Reverse Proxy 실 운영 환경에서는 80, 443 빼고는 inbound를 막아두는 경우가 많아서 iptables 써서 80 -> xxxx로 포워딩하거나, nginx써서 80 -> xxxx로 포워딩한다. 후자를 더 많이 사용하는데 그 이유는 nginx를 쓰면 설정이 좀 귀찮기는 하지만, 한 장비에 여러 인스턴스를 띄우고 이들...
설치 sudo yum update -y yum list | grep postgre sudo yum install -y postgresql postgresql-server cat /etc/passwd -- postgres 계정 있는지 확인 init sudo find / -name initdb 2>/dev/null sudo su - p...