File tree Expand file tree Collapse file tree 5 files changed +19
-152
lines changed
java/tk/mybatis/springboot/druid Expand file tree Collapse file tree 5 files changed +19
-152
lines changed Original file line number Diff line number Diff line change 11
11
<parent >
12
12
<groupId >org.springframework.boot</groupId >
13
13
<artifactId >spring-boot-starter-parent</artifactId >
14
- <version >1.5.1 .RELEASE</version >
14
+ <version >1.5.3 .RELEASE</version >
15
15
</parent >
16
16
17
17
<properties >
90
90
<dependency >
91
91
<groupId >com.github.pagehelper</groupId >
92
92
<artifactId >pagehelper-spring-boot-starter</artifactId >
93
- <version >1.1.1 </version >
93
+ <version >1.1.2 </version >
94
94
</dependency >
95
95
96
96
<dependency >
97
97
<groupId >org.springframework.boot</groupId >
98
98
<artifactId >spring-boot-configuration-processor</artifactId >
99
99
<optional >true</optional >
100
100
</dependency >
101
+
102
+ <dependency >
103
+ <groupId >com.alibaba</groupId >
104
+ <artifactId >druid-spring-boot-starter</artifactId >
105
+ <version >1.1.0</version >
106
+ </dependency >
107
+
101
108
</dependencies >
102
109
103
110
<build >
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
server.port =9090
2
2
logging.level.tk.mybatis =TRACE
3
- druid.url =jdbc:mysql://192.168.16.137:3306/test
4
- druid.driver-class =com.mysql.jdbc.Driver
5
- druid.username =root
6
- druid.password:
7
- druid.initial-size =1
8
- druid.min-idle =1
9
- druid.max-active =20
10
- druid.test-on-borrow =true
3
+ spring.datasource.url =jdbc:mysql://localhost:3306/test
4
+ spring.datasource.username =root
5
+ spring.datasource.password =
6
+ spring.datasource.driver-class-name =com.mysql.jdbc.Driver
7
+ spring.datasource.druid.initial-size =1
8
+ spring.datasource.druid.min-idle =1
9
+ spring.datasource.druid.max-active =20
10
+ spring.datasource.druid.test-on-borrow =true
11
+ spring.datasource.druid.stat-view-servlet.allow =true
12
+
11
13
spring.mvc.view.prefix =/templates/
12
14
spring.mvc.view.suffix =.ftl
13
15
spring.freemarker.cache =false
You can’t perform that action at this time.
0 commit comments