diff --git a/pom.xml b/pom.xml index a679df9..24ad9e0 100644 --- a/pom.xml +++ b/pom.xml @@ -227,6 +227,20 @@ javax.xml.bind 10.0-b28 + + org.springframework.boot + spring-boot-autoconfigure + + + javax.persistence + persistence-api + 1.0.2 + + + redis.clients + jedis + 3.0.1 + diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 1159f1c..40c6123 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -33,6 +33,9 @@ spring: multipart: max-file-size: 1000MB max-request-size: 1000MB + redis: + host: 127.0.0.1 + port: 6379 pagehelper: row-bounds-with-count: true offset-as-page-num: true