Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Springboot Plus
Commits
00cdbb49
Commit
00cdbb49
authored
Dec 29, 2019
by
xiandafu
Browse files
小调整,mysql驱动改成8,springboot改成2.2.2等
parent
c802d6cf
Changes
5
Hide whitespace changes
Inline
Side-by-side
admin-console/pom.xml
View file @
00cdbb49
...
...
@@ -19,7 +19,6 @@
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<version>
6.0.5
</version>
</dependency>
</dependencies>
...
...
admin-console/src/main/java/com/ibeetl/admin/console/web/OrgConsoleController.java
View file @
00cdbb49
...
...
@@ -69,6 +69,15 @@ public class OrgConsoleController {
view
.
addObject
(
"org"
,
org
);
return
view
;
}
@GetMapping
(
MODEL
+
"/add.do"
)
@Function
(
"org.add"
)
public
ModelAndView
add
()
{
ModelAndView
view
=
new
ModelAndView
(
"/admin/org/add.html"
);
return
view
;
}
@GetMapping
(
MODEL
+
"/user/list.do"
)
...
...
admin-console/src/main/resources/application.properties
View file @
00cdbb49
spring.datasource.baseDataSource.url
=
jdbc:mysql://127.0.0.1:3306/starter?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
spring.datasource.baseDataSource.username
=
root
spring.datasource.baseDataSource.password
=
123456
spring.datasource.baseDataSource.password
=
123456
78
spring.datasource.baseDataSource.driver-class-name
=
com.mysql.cj.jdbc.Driver
beetlsql.ds.baseDataSource.basePackage
=
com
...
...
admin-core/pom.xml
View file @
00cdbb49
...
...
@@ -44,7 +44,7 @@
<dependency>
<groupId>
com.ibeetl
</groupId>
<artifactId>
beetl-framework-starter
</artifactId>
<version>
1.2.
14
.RELEASE
</version>
<version>
1.2.
20
.RELEASE
</version>
</dependency>
<dependency>
...
...
pom.xml
View file @
00cdbb49
...
...
@@ -18,7 +18,7 @@
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.
1.7
.RELEASE
</version>
<version>
2.
2.2
.RELEASE
</version>
</parent>
<!-- Add typical dependencies for a web application -->
<dependencies>
...
...
Write
Preview
Supports
Markdown
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