일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Git
- github
- Hibernate
- ssh
- AWS
- 프로그래머스
- EC2
- WebHook
- jdbc
- spring boot
- centos7
- 책 정리
- vagrant
- Linux
- Java
- TLS
- Jenkins
- DISTINCT
- SSL
- Spring Legacy Project
- mariadb
- 토비의스프링
- spring
- sample
- Client
- 코딩테스트
- db
- docker
- TypeScript
- window
- Today
- Total
목록분류 전체보기 (106)
Woopii Vyeolog
● schema.sql, data.sql 파일로 DB 초기화 1. 샘플용 schema.sql, data.sql 생성 ## 파일 위치 ## schema.sql DROP TABLE tb_sample IF EXISTS; CREATE TABLE tb_sample ( id bigint generated by default as identity, name varchar(255) not null, primary key (id) ); ## data.sql INSERT INTO tb_sample (id, name) values (1, 'sample1'); 2. application.yml 수정 ## spring.datasource.schema : schema.sql 파일 지정 ## spring.datasource.dat..
● Spring boot에 H2DB Dependency 추가 1. 아래 링크로 h2db 사이트의 maven dependency 확인 http://h2database.com/html/build.html?highlight=maven&search=maven#maven2 Build Build Portability Environment Building the Software Using Maven 2 Using Eclipse Translating Submitting Source Code Changes Reporting Problems or Requests Automated Build Generating Railroad Diagrams Portability This database is written in Java ..
● 다양한 환경에 적용 할 수 있게 profiles 설정파일을 생성 1. spring 프로젝트의 classpath(/main/resource)안에 'application-dev.yml', 'application-local.yml' 파일을 생성 (추가로 같은 경로에 있는 'application.properties' 파일도 'application.yml' 파일로 이름을 변경) ## '.properties' 확장자 파일과 '.yml' 확장자 파일 둘다 spring에서 인식 할 수 있는 설정 파일의 확장자이다. 다만, '.yml' 파일이 가독성이 좀 더 좋기 때문에 .yml을 선호한다. ## 그냥 application.yml 파일을 어플리케이션 공통으로 적용하는 설정을, application-dev.yml 파일..
● 먼저 Jenkins 가 설치되어 있어야 한다. https://woopi1087.tistory.com/69 [Linux, Centos7] Jenkins 설치 ● Centos7에 Jenkins 설치 1. .Jenkins가 설치 되어 있는 지 확인 명령어 =====> yum list installed | grep jenkins 2. Jenkins 설치파일을 저장소에 다운로드 명령어 =====> wget -O /etc/yum.repos.d/.. woopi1087.tistory.com ● Jenkins ~ Github 연동 1. Centos에 Git 설치 명령어 =====> sudo yum install -y git-all 2. Jenkins 콘솔 화면에서 '새로운 item' 항목 선택 프로젝트명 입력 후 '..
● 먼저 Jenkins 가 설치되어 있어야 한다. https://woopi1087.tistory.com/69 [Linux, Centos7] Jenkins 설치 ● Centos7에 Jenkins 설치 1. .Jenkins가 설치 되어 있는 지 확인 명령어 =====> yum list installed | grep jenkins 2. Jenkins 설치파일을 저장소에 다운로드 명령어 =====> wget -O /etc/yum.repos.d/.. woopi1087.tistory.com ● Jenkins ~ Github 연동 1. Centos에 Git 설치 명령어 =====> sudo yum install -y git-all 2. Jenkins 콘솔 화면에서 '새로운 item' 항목 선택 프로젝트명 입력 후 '..
● Centos7에 Jenkins 설치 1. .Jenkins가 설치 되어 있는 지 확인 명령어 =====> yum list installed | grep jenkins 2. Jenkins 설치파일을 저장소에 다운로드 명령어 =====> wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo ##만약 bash: wget: command not found 문구가 나오면 아래 명령어를 입력 명령어 =====> yum install -y wget ##만약 wget 명령어 사용 시 아래와 같은 문구가 나오면 다음 명령어 입력ERROR: cannot verify pkg.jenkins.io's certificate,..
● Centos7에 mariadb 설치 1. 설치한 os의 버전 확인 명령어 =====> cat /etc/*release 2. 아래 사이트에서 os 버전 및 MariaDB 설치할 버전을 선택하면 Repository 정보와 설치 명령어를 설명해줌 https://mariadb.org/download/?t=repo-config Download MariaDB Server - MariaDB.org REST API Release Schedule Reporting Bugs … Continue reading "Download MariaDB Server" mariadb.org 3. repository 정보 입력 명령어 =====> vi /etc/yum.repos.d/MariaDB.repo MariaDB 파일 입력 정보 ..
● Centos7에서 openjdk11 설치하기 1. root 계정으로 로그인 명령어 =====> sudo su 2. yum 명령어로 설치 가능한 jdk 리스트 확인 명령어 =====> yum list java*openjdk* 3. 원하는 버전의 openjdk 설치 list에 있는 openjdk 패키지가 JRE이고 openjdk-devel 이라고 되어 있는 패키지가 JDK라고 생각하면 됨 (본글에서는 open jdk 11버전을 설치할 것) 명령어 =====> yum install -y java-11-openjdk-devel.x86_64 4. 설치 확인 명령어1 =====> java -version 명령어2 =====> javac -version 명령어3 =====> which java