STS 툴 버그가 발견되면 다른 버전으로 다운 받는 법
STS 툴에 세팅하기 - 플러그인 설정 (JSP, Javascript)
Sring Boot DevTools
Lombok
Spring Data JPA
MariaDB Driver
Spring Security
Spring Web
oauth2-client
<!-- 시큐리티 태그 라이브러리 -->
<dependency >
<groupId >org.springframework.security</groupId >
<artifactId >spring-security-taglibs</artifactId >
</dependency >
<!-- JSP 템플릿 엔진 -->
<dependency >
<groupId >org.apache.tomcat</groupId >
<artifactId >tomcat-jasper</artifactId >
<version >9.0.43</version >
</dependency >
<!-- JSTL -->
<dependency >
<groupId >javax.servlet</groupId >
<artifactId >jstl</artifactId >
</dependency >
create user 'cos '@' %' identified by ' cos1234' ;
GRANT ALL PRIVILEGES ON * .* TO ' cos' @' %' ;
create database photogram ;
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/photogram?serverTimezone=Asia/Seoul&allowPublicKeyRetrieval=true&useSSL=false
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/
<%@ taglib prefix =" c" uri =" http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix =" sec" uri =" http://www.springframework.org/security/tags" %>