Skip to content

Commit 3545c08

Browse files
author
geekidea
committed
Merge branch 'dev'
Former-commit-id: 988e9f7bf21d9e11a1956f6c853d4b10258dca6c
2 parents aa71657 + aa4662e commit 3545c08

File tree

6 files changed

+42
-32
lines changed

6 files changed

+42
-32
lines changed

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
<p align="center">
2+
<a href="https://github.com/geekidea/spring-boot-plus">
3+
<img alt="spring-boot-plus logo" src="https://raw.githubusercontent.com/geekidea/spring-boot-plus/dev/docs/img/logo.png">
4+
</a>
5+
</p>
6+
<p align="center">
7+
Everyone can develop projects independently, quickly and efficiently!
8+
</p>
9+
10+
<p align="center">
11+
<a href="https://github.com/geekidea/spring-boot-plus/">
12+
<img alt="Latest version" src="https://img.shields.io/badge/version-1.1.0--RELEASE-blue">
13+
</a>
14+
15+
<a href="https://www.apache.org/licenses/LICENSE-2.0">
16+
<img alt="code style" src="https://img.shields.io/badge/license-Apache%202-4EB1BA.svg?style=flat-square">
17+
</a>
18+
</p>
19+
<p>&nbsp;</p>
120
## Introduction
221

322
### spring-boot-plus是一套集成spring boot常用开发组件的后台快速开发框架

docs/db/spring_boot_plus.sql

+13-24
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
11
/*
2-
Navicat Premium Data Transfer
3-
4-
Source Server : mysql-localhost
5-
Source Server Type : MySQL
6-
Source Server Version : 50727
7-
Source Host : localhost:3306
8-
Source Schema : spring_boot_plus
9-
10-
Target Server Type : MySQL
11-
Target Server Version : 50727
12-
File Encoding : 65001
13-
14-
Date: 24/07/2019 16:25:18
2+
* Copyright 2019-2029 geekidea(https://github.com/geekidea)
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1515
*/
1616

17-
SET NAMES utf8mb4;
18-
SET FOREIGN_KEY_CHECKS = 0;
19-
2017
-- ----------------------------
2118
-- Table structure for ip
2219
-- ----------------------------
@@ -52,11 +49,3 @@ INSERT INTO `sys_log` VALUES (1060438746056376321, 0, 'A', 100000, '2018-11-08 1
5249
INSERT INTO `sys_log` VALUES (1060438788502732802, 0, 'B', 100000, '2018-11-08 15:42:08');
5350
INSERT INTO `sys_log` VALUES (1060438799600861185, 0, 'C', 100000, '2018-11-08 15:42:10');
5451
INSERT INTO `sys_log` VALUES (1060438809495224322, 0, 'D', 100000, '2018-11-08 15:42:13');
55-
INSERT INTO `sys_log` VALUES (1060438823319650306, 0, 'E', 100000, '2018-11-08 15:42:16');
56-
INSERT INTO `sys_log` VALUES (1060438833750884353, 0, 'F', 100000, '2018-11-08 15:42:18');
57-
INSERT INTO `sys_log` VALUES (1060439062743166977, 0, '1111111111', 100000, '2018-11-08 15:43:13');
58-
INSERT INTO `sys_log` VALUES (1060439085228830721, 1, 'test redis lock ffbb79f6-9efe-4608-b204-fde5279b107f', 100000, '2018-11-16 16:46:35');
59-
INSERT INTO `sys_log` VALUES (1068528405778444290, NULL, NULL, NULL, '2018-11-30 23:33:21');
60-
INSERT INTO `sys_log` VALUES (1068528405778444291, NULL, NULL, NULL, '2018-11-30 23:33:21');
61-
62-
SET FOREIGN_KEY_CHECKS = 1;

docs/img/logo.png

7.86 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
springbootplus:
2-
isEnableAnsi: false
2+
isEnableAnsi: true
33
login:
44
token:
55
valid:
@@ -9,14 +9,16 @@ springbootplus:
99
server:
1010
port: 8888
1111
servlet:
12-
context-path: /api
12+
context-path: /
1313
spring:
1414
datasource:
15-
password: ''
16-
url: ''
17-
username: ''
15+
url: jdbc:mysql://localhost:3306/spring_boot_plus?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
16+
username: root
17+
password: root
18+
1819
redis:
1920
database: 0
20-
host: ''
21-
password: ''
21+
host: localhost
22+
password:
2223
port: 6379
24+

src/main/resources/config/application-local.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spring:
1414
datasource:
1515
url: jdbc:mysql://localhost:3306/spring_boot_plus?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
1616
username: root
17-
password: rootroot
17+
password: root
1818

1919
redis:
2020
database: 0

0 commit comments

Comments
 (0)