Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
ff8598d7
Commit
ff8598d7
authored
Jun 27, 2018
by
stylefeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
升级各个jar的版本
parent
7bfead66
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
26 additions
and
39 deletions
+26
-39
guns-admin/pom.xml
+1
-12
guns-admin/src/main/resources/META-INF/spring-devtools.properties
+2
-2
guns-admin/src/main/resources/application.yml
+3
-3
guns-core/src/main/java/com/stylefeng/guns/core/datasource/DruidProperties.java
+1
-1
guns-core/src/main/java/com/stylefeng/guns/core/util/DateUtil.java
+0
-0
guns-generator/pom.xml
+4
-0
guns-rest/src/main/java/com/stylefeng/guns/rest/GunsRestServletInitializer.java
+1
-1
pom.xml
+14
-20
No files found.
guns-admin/pom.xml
View file @
ff8598d7
...
...
@@ -31,10 +31,6 @@
<!--spring boot依赖-->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-data-redis
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-aop
</artifactId>
</dependency>
<dependency>
...
...
@@ -97,10 +93,6 @@
</dependency>
-->
<dependency>
<groupId>
commons-io
</groupId>
<artifactId>
commons-io
</artifactId>
</dependency>
<dependency>
<groupId>
com.github.penggle
</groupId>
<artifactId>
kaptcha
</artifactId>
</dependency>
...
...
@@ -120,10 +112,7 @@
<groupId>
io.springfox
</groupId>
<artifactId>
springfox-swagger-ui
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-lang3
</artifactId>
</dependency>
</dependencies>
<build>
...
...
guns-admin/src/main/resources/META-INF/spring-devtools.properties
View file @
ff8598d7
restart.include.beetl
=
/beetl-2.7.15.jar
\ No newline at end of file
restart.include.beetl
=
/beetl-2.8.5.jar
\ No newline at end of file
guns-admin/src/main/resources/application.yml
View file @
ff8598d7
...
...
@@ -69,7 +69,7 @@ mybatis-plus:
spring
:
profiles
:
local
datasource
:
url
:
jdbc:mysql://127.0.0.1:3306/guns?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
url
:
jdbc:mysql://127.0.0.1:3306/guns?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
&serverTimezone=UTC
username
:
root
password
:
root
db-name
:
guns
...
...
@@ -78,7 +78,7 @@ spring:
#多数据源配置
guns
:
muti-datasource
:
url
:
jdbc:mysql://127.0.0.1:3306/guns2?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
url
:
jdbc:mysql://127.0.0.1:3306/guns2?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
&serverTimezone=UTC
username
:
root
password
:
root
defaultDataSourceName
:
dataSourceGuns
#默认的数据源名称
...
...
@@ -88,7 +88,7 @@ guns:
spring
:
profiles
:
produce
datasource
:
url
:
jdbc:mysql://127.0.0.1:3306/guns?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
url
:
jdbc:mysql://127.0.0.1:3306/guns?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
&serverTimezone=UTC
username
:
root
password
:
root
filters
:
wall,mergeStat
...
...
guns-core/src/main/java/com/stylefeng/guns/core/datasource/DruidProperties.java
View file @
ff8598d7
...
...
@@ -22,7 +22,7 @@ public class DruidProperties {
private
String
password
=
"root"
;
private
String
driverClassName
=
"com.mysql.jdbc.Driver"
;
private
String
driverClassName
=
"com.mysql.
cj.
jdbc.Driver"
;
private
Integer
initialSize
=
2
;
...
...
guns-core/src/main/java/com/stylefeng/guns/core/util/DateUtil.java
View file @
ff8598d7
This diff is collapsed.
Click to expand it.
guns-generator/pom.xml
View file @
ff8598d7
...
...
@@ -25,6 +25,10 @@
<groupId>
com.ibeetl
</groupId>
<artifactId>
beetl
</artifactId>
</dependency>
<dependency>
<groupId>
com.baomidou
</groupId>
<artifactId>
mybatis-plus-generate
</artifactId>
</dependency>
</dependencies>
...
...
guns-rest/src/main/java/com/stylefeng/guns/rest/GunsRestServletInitializer.java
View file @
ff8598d7
package
com
.
stylefeng
.
guns
.
rest
;
import
org.springframework.boot.builder.SpringApplicationBuilder
;
import
org.springframework.boot.web.support.SpringBootServletInitializer
;
import
org.springframework.boot.web.s
ervlet.s
upport.SpringBootServletInitializer
;
/**
* Guns REST Web程序启动类
...
...
pom.xml
View file @
ff8598d7
...
...
@@ -28,20 +28,19 @@
<guns.version>
1.0.0-SNAPSHOT
</guns.version>
<mybatisplus-spring-boot-starter.version>
1.0.5
</mybatisplus-spring-boot-starter.version>
<shiro.version>
1.4.0
</shiro.version>
<mybatis-plus.version>
2.1.8
</mybatis-plus.version>
<fastjson.version>
1.2.44
</fastjson.version>
<commons.io.version>
2.5
</commons.io.version>
<mybatis-plus.version>
2.3
</mybatis-plus.version>
<fastjson.version>
1.2.47
</fastjson.version>
<velocity.version>
1.7
</velocity.version>
<kaptcha.version>
2.3.2
</kaptcha.version>
<ehcache.version>
3.3.1
</ehcache.version>
<zxing.version>
3.2.1
</zxing.version>
<druid.version>
1.1.
6
</druid.version>
<beetl.version>
2.
7.1
5
</beetl.version>
<swagger.version>
2.
2
.2
</swagger.version>
<commons-lang3.version>
3.
6
</commons-lang3.version>
<druid.version>
1.1.
10
</druid.version>
<beetl.version>
2.
8.
5
</beetl.version>
<swagger.version>
2.
9
.2
</swagger.version>
<commons-lang3.version>
3.
7
</commons-lang3.version>
<ehcache.core.version>
2.6.11
</ehcache.core.version>
<mysql-connector-java.version>
5.1.38
</mysql-connector-java.version>
<jwt.version>
0.
7
.0
</jwt.version>
<mysql-connector-java.version>
6.0.6
</mysql-connector-java.version>
<jwt.version>
0.
9
.0
</jwt.version>
<hutool.version>
4.1.1
</hutool.version>
</properties>
...
...
@@ -97,6 +96,11 @@
<version>
${mybatis-plus.version}
</version>
</dependency>
<dependency>
<groupId>
com.baomidou
</groupId>
<artifactId>
mybatis-plus-generate
</artifactId>
<version>
${mybatis-plus.version}
</version>
</dependency>
<dependency>
<groupId>
com.alibaba
</groupId>
<artifactId>
fastjson
</artifactId>
<version>
${fastjson.version}
</version>
...
...
@@ -107,11 +111,6 @@
<version>
${druid.version}
</version>
</dependency>
<dependency>
<groupId>
commons-io
</groupId>
<artifactId>
commons-io
</artifactId>
<version>
${commons.io.version}
</version>
</dependency>
<dependency>
<groupId>
com.github.penggle
</groupId>
<artifactId>
kaptcha
</artifactId>
<version>
${kaptcha.version}
</version>
...
...
@@ -163,12 +162,7 @@
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-core
</artifactId>
<version>
${hutool.version}
</version>
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-http
</artifactId>
<artifactId>
hutool-all
</artifactId>
<version>
${hutool.version}
</version>
</dependency>
</dependencies>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment