Commit 00cdbb49 authored by xiandafu's avatar xiandafu
Browse files

小调整,mysql驱动改成8,springboot改成2.2.2等

parent c802d6cf
......@@ -19,7 +19,6 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>6.0.5</version>
</dependency>
</dependencies>
......
......@@ -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")
......
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=12345678
spring.datasource.baseDataSource.driver-class-name=com.mysql.cj.jdbc.Driver
beetlsql.ds.baseDataSource.basePackage=com
......
......@@ -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>
......
......@@ -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>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment