supbase 0.1基础版
spring boot 2.0
alibaba druid
初级的权限管理
基础的增删改查模板
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..64e1140
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,51 @@
+plugins {
+ id 'org.springframework.boot' version '2.1.4.RELEASE'
+ id 'java'
+}
+
+apply plugin: 'io.spring.dependency-management'
+
+group = 'com.supwisdom'
+version = '0.0.1-SNAPSHOT'
+sourceCompatibility = '1.8'
+
+repositories {
+ mavenCentral()
+ jcenter()
+}
+
+dependencies {
+
+ implementation 'org.springframework.boot:spring-boot-starter-security'
+ implementation 'org.springframework.boot:spring-boot-starter-validation'
+ implementation 'org.springframework.boot:spring-boot-starter-web'
+ implementation 'org.springframework.boot:spring-boot-starter-websocket'
+ implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
+ implementation 'org.springframework.boot:spring-boot-starter-logging'
+ implementation 'org.springframework.boot:spring-boot-devtools'
+
+ implementation 'org.springframework:springloaded:1.2.8.RELEASE'
+
+ // implementation 'org.flywaydb:flyway-core'
+
+ compile files('libs/ojdbc6.jar')
+ //数据库池
+ implementation 'com.alibaba:druid:1.1.16'
+
+ implementation 'org.springframework.security:spring-security-taglibs:5.1.5.RELEASE'
+ //j2ee
+ implementation 'javax.servlet:jstl:1.2'
+ implementation 'javax.servlet:javax.servlet-api:4.0.1'
+ implementation 'org.apache.tomcat.embed:tomcat-embed-jasper:9.0.19'
+ implementation 'org.apache.tomcat:jsp-api:6.0.53'
+ //sitemesh
+ implementation 'org.sitemesh:sitemesh:3.0.1'
+
+ //commons-lang
+ implementation 'commons-lang:commons-lang:2.6'
+ //json
+ implementation 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:2.9.8'
+
+ testImplementation 'org.springframework.boot:spring-boot-starter-test'
+ testImplementation 'org.springframework.security:spring-security-test'
+}