IntelliJ Untrusted Server's Certificate 메시지
1. Untrusted Server’s Certificate 메시지 2. Accept non-trusted certificates automatically 설정 File → Settings → Tools → Server Certificates [출처 및 참고] https://devkingdom.tistory.com/295
1. Untrusted Server’s Certificate 메시지 2. Accept non-trusted certificates automatically 설정 File → Settings → Tools → Server Certificates [출처 및 참고] https://devkingdom.tistory.com/295
1. Log4jdbc 설정 Spring Boot Log4jdbc 설정: https://dejavuhyo.github.io/posts/spring-boot-log4jdbc/ 2. driver-class-name 설정 수정 전 # PostgreSQL Driver spring.datasource.driver-class-name=org....
1. springdoc-openapi란 springdoc-openapi java 라이브러리는 스프링 부트 프로젝트를 사용하여 API 문서 생성을 자동화하는데 도움이 된다. springdoc-openapi는 스프링 구성, 클래스 구조 및 다양한 주석을 기반으로 API 의미를 추론하기 위해 런타임에 애플리케이션을 검사하여 작동한다. JSON/YAML 및...
1. 세션 Timeout Servlet에서 모든 세션 객체는 Timeout 값을 가지고 있으며 따로 설정하지 않는 경우 기본적으로 30분이다. 2. 우선순위 1) 첫 번째 setMaxInactiveInterval(int interval) 메서드로 지정한 경우이다. 특정 세션 객체에 직접 setMaxInactiveInterval(int interv...
1. activate 설정 application.yml에 active하려는 환경을 설정한다. spring: profiles: active: local 2. 내용 작성 application.yml에 local, dev, prod를 설정한다. spring: profiles: active: local --- # local sp...
1. properties 파일 분리 기존 application.properties 파일을 운영 및 개발로 분리하여 파일을 생성한다. application-{name}.properties 로컬환경은 local, 개발환경은 dev, 운영환경은 prd로 파일을 생성한다. 2. 애플리케이션 실행 Edit Configurations을 설정하는 ...
1. 모든 파일을 git이 추적 중인 경우 .gitignore 파일을 제대로 작성했는지 확인한다. 무시하는 파일을 제외하고 commit을 한다. 루트 폴더(최상위 폴더)에서 캐쉬를 삭제한다. git rm -r --cached . 작업 중인 디렉터리 모든 파일들의 git index가 초기화...
1. 플러그인 설치 File → Settings → Plugins 2. gitignore 추가 추가 하려는 위치에 마우스 오른쪽을 클릭하여 Add gitignore를 선택한다. [출처 및 참고] https://steady-hello.tistory.com/44
1. 모든 버전 다운로드 사이트 https://archive.apache.org/dist/tomcat/ 2. 다운로드 방법 1) Tomcat 메인 버전 선택 2) 하위 버전 선택 3) bin 폴더 선택 Packaging 상세 설명은 아래와 같다. bin 폴더 apache-tomcat-[version]....
1. tr 입력을 주어진 분리자(field seperator)로 분리하여 명령을 처리한다. 문자를 변경하거나 삭제할 때 사용한다. 2. 주요 옵션 옵션 설명 -d 문자를 삭제 3. 사용예제 1) 문자 치환(replace) $ echo "a:...