어드민 vuejs 통합 빌드 환경 구성 / 유플러스 마스킹 유틸 구성

This commit is contained in:
hyunjin35
2022-06-07 16:56:26 +09:00
parent bb8850ae9c
commit b6d9091838
14 changed files with 488 additions and 303 deletions

View File

@@ -50,6 +50,10 @@ dependencies {
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security'
// RestTemplate 대신 WebClient 사용
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-webflux'
// validation
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation'
// vuejs 파일 index 지정
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
// JSP 사용시
// implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper'
// implementation group: 'javax.servlet', name: 'jstl', version: '1.2'
@@ -96,18 +100,6 @@ dependencies {
// custom libs
implementation fileTree(dir:'libs', include:'*.jar')
// mysql 사용시
// https://mvnrepository.com/artifact/mysql/mysql-connector-java
implementation 'mysql:mysql-connector-java'
//implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.22'
//implementation group: 'mysql', name: 'mysql-connector-java', version: '5.1.47'
// https://mvnrepository.com/artifact/commons-dbcp/commons-dbcp
implementation group: 'commons-dbcp', name: 'commons-dbcp', version: '1.4'
// validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
}
bootJar {