일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Linux
- Git
- TLS
- 책 정리
- Jenkins
- DISTINCT
- TypeScript
- Hibernate
- SSL
- spring
- ssh
- db
- 토비의스프링
- 프로그래머스
- sample
- docker
- github
- Java
- EC2
- mariadb
- window
- 코딩테스트
- AWS
- vagrant
- centos7
- jdbc
- WebHook
- Client
- Spring Legacy Project
- spring boot
- Today
- Total
목록spring boot (11)
Woopii Vyeolog
● 다양한 환경에 적용 할 수 있게 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' 항목 선택 프로젝트명 입력 후 '..
● Visual Studio Code에서 Spring Boot 프로젝트 빠른 생성 방법 아래 사이트 참조↓ 참조 : https://spring.io/quickstart Spring Quickstart Guide You will build a classic “Hello World!” endpoint which any browser can connect to. You can even tell it your name, and it will respond in a more friendly way. spring.io ● 필요 Visual Studio Code 확장 프로그램 - Extension Pack for Java - Spring Boot Extension Pack 1. Visual Studio Code에서 ..