- 아래 주소로 가서 4.0.6 버전으로 설치해주세요. 아니면 의존성 다운로드 79프로에서 무한루프가 발생합니다.
- https://github.com/spring-projects/sts4/wiki/Previous-Versions
- Sring Boot DevTools
- Lombok
- Spring Data JPA
- MariaDB Driver
- Spring Security
- Spring Web
- oauth2-client
xml
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jasper</artifactId>
<version>9.0.43</version>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
sql create user 'cos'@'%' identified by 'cos1234'; GRANT ALL PRIVILEGES ON . TO 'cos'@'%'; create database photogram;
yml server: port: 8080 servlet: context-path: / encoding: charset: utf-8 enabled: true
spring: mvc: view: prefix: /WEB-INF/views/ suffix: .jsp
datasource: driver-class-name: org.mariadb.jdbc.Driver url: jdbc:mariadb://localhost:3306/cos?serverTimezone=Asia/Seoul username: cos password: cos1234
jpa: open-in-view: true hibernate: ddl-auto: update naming: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl show-sql: true
servlet: multipart: enabled: true max-file-size: 2MB
security: user: name: test password: 1234
file: path: C:/src/springbootwork-sts/upload/
jsp <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>