스프링부트에 대한 학습시 좋은 자료를 정리해보았다.
# Spring boot
https://projects.spring.io/spring-boot/
# Spring Initializr
# Spring boot guide: Topical guides and Tutorials
# Springboot Reference Document
https://spring.io/docs/reference
# Springboot Reference Document: basic
https://docs.spring.io/spring-boot/docs/2.0.2.RELEASE/reference/htmlsingle/
-> 모든 Spring 프로젝트에 대한 API 및 참조문서를 확인할 수 있다.
-> 모든 Spring 프로젝트에 대한 깃허브를 제공하고 있다.
# Github: Springboot example source
https://github.com/spring-projects/spring-boot
여러가지 Sample Application의 소스들이 있다.
예를 들면 spring-boot-sample-logback을 테스트해보고 싶다면,
Import -> Existing Maven Project -> Root Directory만 잡아주고,
바로 스트링부트 어플리케이션이 잘 실행된다.
spring-boot-samples를 전체 Import하게 되면,
아래와 같이 모든 프로젝트들이 Import가 가능하다.
# Youtube: 백기선님의 스프링부트 강좌
https://www.youtube.com/watch?v=CnmTCMRTbxo&list=PLfI752FpVCS8tDT1QEYwcXmkKDz-_6nm3
'Java > Springboot' 카테고리의 다른 글
SpringBoot with Docker : Docker 이미지 생성 (0) | 2018.05.23 |
---|---|
CRUD Restful Web Service: RestTemplate을 이용 (0) | 2018.05.03 |