-
스프링부트 with JPA 블로그 2강 - 의존성 설정스프링부트 with JPA 블로그 2020. 3. 15. 14:39
1. Spring Boot DevTools
https://docs.spring.io/spring-boot/docs/1.5.16.RELEASE/reference/html/using-boot-devtools.html
20. Developer tools
Applications that use spring-boot-devtools will automatically restart whenever files on the classpath change. This can be a useful feature when working in an IDE as it gives a very fast feedback loop for code changes. By default, any entry on the classpath
docs.spring.io
2. Lombok
Project Lombok
projectlombok.org
3. Spring Data JPA
4. MySQL Driver
5. Spring Security
6. OAuth2 Client - 세팅안함.
- 직접 노가다로 카카오 로그인 구현하여 개념잡기
- 다음 인스타 프로젝트에서는 사용할 것임.
- JWT는 APP과 연동할 때 사용할 예정
7. 템플릿 엔진
- jsp 사용할 예정
8. Spring Web
- WEB MVC를 사용하여 웹 애플리케이션을 만드는데 필요한 스프링부트의 기본적인 요소를 가짐.
- 내장형 컨테이너로 톰캣을 기본탑재하고 있다.
10. 추가 적인 것들
Maven Repository: Search/Browse/Explore
Ontrack module: ontrack-extension-issues Last Release on Mar 14, 2020
mvnrepository.com
<!-- 시큐리티 태그 라이브러리 --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> </dependency> <!-- JSP 템플릿 엔진 --> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> </dependency> <!-- JSTL --> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency>
'스프링부트 with JPA 블로그' 카테고리의 다른 글
스프링부트 with JPA 블로그 6강 - yaml 설정 (1) 2020.03.15 스프링부트 with JPA 블로그 5강 - HTTP1.1 체험하기 (0) 2020.03.15 스프링부트 with JPA 블로그 4강 - Git 세팅 (2) 2020.03.15 스프링부트 with JPA 블로그 3강 - MySQL 한글 설정 및 연결 (1) 2020.03.15 스프링부트 with JPA 블로그 1강 - 환경세팅 (0) 2020.03.15 댓글