hello jiniworld

hello jiniworld

  • hello jiniworld (220)
    • Spring (59)
      • Basic (16)
      • Spring Docs (6)
      • Spring Data JPA Tutorial (14)
      • Spring Boot Tutorial (17)
      • Jersey (6)
    • Go (17)
    • Dev (10)
      • Clean Architecture (3)
      • System Design (2)
      • Documents (2)
      • Client (2)
    • Infrastructure (5)
      • Docker (1)
      • Kubernetes (4)
    • DB (20)
      • MySQL (9)
      • MariaDB (9)
      • Oracle (1)
    • Java (52)
      • Basic (14)
      • coding test (27)
      • Effective Java (11)
    • Python (7)
      • Flask (1)
      • Basic (3)
      • Effective Python (1)
      • coding test (2)
    • Front-end (3)
      • Vanilla JS (2)
      • Basic (1)
    • Linux (11)
      • Basic (2)
      • Command-line (9)
    • Web Server (6)
      • CentOS 7 (5)
      • Oracle Linux 8 (1)
    • WAS (3)
    • CentOS 7 (17)
      • Basic (9)
      • Jenkins (8)
    • Etc (10)
      • Windows 10 (3)
      • trash bin (3)
09-16 02:44
  • 전체보기
  • 방명록
  • jini's GitHub
  • demo api
  • chaeking api
RSS 피드
로그인
로그아웃 글쓰기 관리

hello jiniworld

컨텐츠 검색

태그

Spring Boot springboot MySQL SpringBoot2 JAX-RS effectivejava hackerrank week1 Jersey jenkins centos7 Java Spring spring docs go MariaDB Command-Line Spring Boot Tutorial https codility

최근글

댓글

공지사항

  • SSL 인증서 설정하기

아카이브

hello jiniworld(220)

  • [MariaDB] 7. mysqldump를 이용한 데이터 백업

    2022.04.01
  • [MariaDB] 6. 샘플데이터 다운로드 및 DB 스키마 조회하기

    2022.03.31
  • [Spring Boot Core] Spring Boot Relaxed Binding using yaml

    2022.03.30
  • [Spring Data JPA Tutorial] 8. Swagger를 이용한 REST API 자동 문서화 (OpenAPI 3)

    2022.03.17
  • [Visual Studio Code] REST Client를 활용한 REST API 테스트

    2022.02.25
  • [Command-line] uniq command in Linux

    2022.02.22
[MariaDB] 7. mysqldump를 이용한 데이터 백업

mysqldump 기본 옵션 공통 특징 사용자명 및 비밀번호 옵션 생략 root 사용자를 이용 root 사용자를 이용 필수 권한 예제 전체 데이터베이스 백업 특정 데이터베이스 백업 특정 테이블 백업 CREATE STATEMENT만 백업 INSERT STATEMENT만 백업 STORED ROUTINE 포함하여 백업 1. mysqldump 1.1. 기본 mysqldump [options] db_name [tbl_name ...] mysqldump [options] --databases db_name ... mysqldump [options] --all-databases mysqldump [options] --system={options} mysqldump client는 데이터베이스 dump파일로 추출해내기 ..

2022. 4. 1. 17:07
[MariaDB] 6. 샘플데이터 다운로드 및 DB 스키마 조회하기

Maria DB 를 이용하여 DDL, DML, DCL sql 실습을 하기 전에 먼저 샘플데이터를 다운받아 데이터베이스와 테이블 구조를 조회하는 방법을 먼저 알아보도록 합시다. 샘플데이터 다운로드 샘플 데이터 추가 source redirection 데이터베이스 및 테이블 구조 조회 데이터베이스 목록 조회 데이터베이스 접근 테이블 목록 조회 테이블 스키마 조회 1. 샘플데이터 다운로드 https://dev.mysql.com/doc/index-other.html MySQL 공식 홈페이지에는 SQL 실행 실습을 위한 샘플데이터 몇가지를 제공하고 있습니다. 전 시간에 말했듯이 MariaDB는 MySQL과 문법이 거의 유사하기 때문에 이 샘플데이터를 활용하여 SQL 실습이 가능합니다. 위의 데이터베이스 중 empl..

2022. 3. 31. 11:28
[Spring Boot Core] Spring Boot Relaxed Binding using yaml

Externalized Configuration @ConfigurationProperties vs @Value 작성 방법 @Value @ConfigurationProperties Relaxed Binding @ConfigurationProperties에 적용되는 Relaxed Binding @Value에 적용되는 Relaxed Binding 테스트 결과 참고 1. Externalized Configuration Spring Boot는 설정의 외부화를 통해 다양한 환경에 따라 설정을 달리할 부분들을 별도로 관리할 수 있습니다. 설정의 외부화(Externalized Configuration)는 properties 또는 YAML 파일, 환경변수, Command-line 인자값 등을 통해 설정할 수 있습니다. ..

2022. 3. 30. 17:37
[Spring Data JPA Tutorial] 8. Swagger를 이용한 REST API 자동 문서화 (OpenAPI 3)

Swagger OpenAPI 3 Swagger-ui 설정 의존성 라이브러리 추가 프로퍼티 설정 (operations-sorter, display-query-params-without-oauth2) Swagger-ui 실행 /swagger-ui/index.html OpenAPI Info 설정 실행 1. Swagger 1.1. OpenAPI 3 (OAS 3) OpenAPI Specification는 RESTful 웹서비스 API를 시각적으로 표현할수 있도록 정한 명세입니다. 가장 최신 명세는 OpenAPI 3고, 정해진 규칙에 맞춰 작성된 명세는 Swagger UI로 웹문서화할 수 있습니다. API 스펙은 json 나 yaml 형식으로 표현할 수 있습니다. 아래의 사진은 springdoc-openapi 를 ..

2022. 3. 17. 15:26
[Visual Studio Code] REST Client를 활용한 REST API 테스트

REST Client? VS Code Rest Client 플러그인 설치 demo.rest 파일 생성 및 GET method 테스트 priview Response 고정 Workspace 설정 Requests Query strings Request Headers Request Body application/json application/x-www-form-urlencoded File Variables Authentication 지원하는 인증방식 SSL Client Certificates Request Variable 활용 예제 1. REST Client? REST Client는 Visual Studio Code 상에서 HTTP request를 직접 보내고, 응답값을 확인할 수 있게 해주는 플러그인입니다. ..

2022. 2. 25. 16:37
[Command-line] uniq command in Linux

uniq 예제 예제 파일 uniq 기본 -i, ignore-case sort 명령어 적용 -c, --count -d, --repeated -u, --unique 응용 1. uniq uniq는 연속적으로 중복된 내용을 제거하여 출력하는 유틸리티 입니다. uniq [OPTION]... [INPUT [OUTPUT]] option -i --ignore-case 대소문자 구분 x -c --count 반복 횟수를 prefix에 포함하여 출력 -d --repeated 반복되어 나타난 line만 출력 -u --unique 반복되지 않은 line만 출력 2. 예제 2.1. 예제 파일 예제를 위한 간단한 파일들을 추가하겠습니다. cat green.txt apple banana melon blue red red Red bl..

2022. 2. 22. 00:09
1 ··· 15 16 17 18 19 20 21 ··· 37
JINIWORLD
© jiniworld. All rights reserved.

티스토리툴바