Skip to content

Commit 74dac44

Browse files
README.md
Former-commit-id: 2489767e8395100148d698cdf3a781f15e9605c6
1 parent 78414cc commit 74dac44

File tree

2 files changed

+87
-16
lines changed

2 files changed

+87
-16
lines changed

README-zh.md

Lines changed: 61 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,20 @@
2121
</a>
2222
</p>
2323

24-
25-
#### SpringBoot Scaffolding
26-
2724
### spring-boot-plus是一套集成spring boot常用开发组件的后台快速开发框架
25+
> Spring-Boot-Plus是易于使用,快速,高效,功能丰富,开源的spring boot 脚手架.
2826
29-
## Purpose
27+
## 目标
3028
> 每个人都可以独立、快速、高效地开发项目!
3129
32-
> Everyone can develop projects independently, quickly and efficiently!
30+
## 文档
31+
#### [GITHUB](https://github.com/geekidea/spring-boot-plus) | [GITEE](https://gitee.com/geekidea/spring-boot-plus)
3332

34-
## Quick Start
35-
#### 官网地址:[springboot.plus](http://springboot.plus "springboot.plus")
36-
#### GITHUB:[https://github.com/geekidea/spring-boot-plus](https://github.com/geekidea/spring-boot-plus "spring-boot-plus github")
37-
#### GITEE:[https://gitee.com/geekidea/spring-boot-plus](https://gitee.com/geekidea/spring-boot-plus "spring-boot-plus gitee")
33+
#### Website:[springboot.plus](http://springboot.plus "springboot.plus")
3834

39-
# Architecture
35+
# 项目架构
4036
![spring-boot-plus-architecture.png](https://raw.githubusercontent.com/geekidea/spring-boot-plus/master/docs/img/spring-boot-plus-architecture.png)
4137

42-
4338
### 主要特性
4439
1. 集成spring boot 常用开发组件集、公共配置、AOP日志等
4540
2. 集成mybatis plus快速dao操作
@@ -79,8 +74,58 @@ jwt | 0.9.1 | json web token |
7974
hutool-all | 4.5.10 | 常用工具集 |
8075

8176

82-
## spring-boot-plus QQ技术交流群
83-
![spring-boot-plus QQ技术交流群](https://raw.githubusercontent.com/geekidea/spring-boot-plus/master/docs/img/spring-boot-plus-qq-group.png)
84-
85-
86-
#### 官网地址:[springboot.plus](http://springboot.plus "springboot.plus")
77+
## 使用
78+
### 克隆 spring-boot-plus
79+
```bash
80+
git clone https://github.com/geekidea/spring-boot-plus.git
81+
cd spring-boot-plus
82+
```
83+
84+
### Maven 构建
85+
> 默认使用local环境,对应配置文件:application-local.yml
86+
87+
```bash
88+
mvn clean package -Plocal
89+
```
90+
91+
### 项目入口类
92+
```bash
93+
/**
94+
* spring-boot-plus 项目启动入口
95+
* @author geekidea
96+
* @since 2018-11-08
97+
*/
98+
@EnableAsync
99+
@EnableScheduling
100+
@EnableTransactionManagement
101+
@EnableConfigurationProperties
102+
@EnableAdminServer
103+
@MapperScan({"io.geekidea.springbootplus.**.mapper"})
104+
@SpringBootApplication
105+
public class SpringBootPlusApplication {
106+
107+
public static void main(String[] args) {
108+
// 启动spring-boot-plus
109+
ConfigurableApplicationContext context = SpringApplication.run(SpringBootPlusApplication.class, args);
110+
// 打印项目信息
111+
PrintApplicationInfo.print(context);
112+
}
113+
114+
}
115+
```
116+
117+
## 快速开始
118+
[快速开始](https://springboot.plus/guide/quick-start.html)
119+
120+
## 文档
121+
[https://springboot.plus](https://springboot.plus)
122+
123+
## 联系
124+
125+
- spring-boot-plus技术交流群
126+
127+
![spring-boot-plus QQ Group](https://raw.githubusercontent.com/geekidea/spring-boot-plus/master/docs/img/spring-boot-plus-qq-group.png)
128+
129+
130+
## License
131+
spring-boot-plus is under the Apache 2.0 license. See the [LICENSE](https://github.com/geekidea/spring-boot-plus/blob/master/LICENSE) file for details.

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,32 @@ cd spring-boot-plus
8888
mvn clean package -Plocal
8989
```
9090

91+
### Project Main Class
92+
```bash
93+
/**
94+
* spring-boot-plus Project Main Class
95+
* @author geekidea
96+
* @since 2018-11-08
97+
*/
98+
@EnableAsync
99+
@EnableScheduling
100+
@EnableTransactionManagement
101+
@EnableConfigurationProperties
102+
@EnableAdminServer
103+
@MapperScan({"io.geekidea.springbootplus.**.mapper"})
104+
@SpringBootApplication
105+
public class SpringBootPlusApplication {
106+
107+
public static void main(String[] args) {
108+
// Run spring-boot-plus
109+
ConfigurableApplicationContext context = SpringApplication.run(SpringBootPlusApplication.class, args);
110+
// Print Project Info
111+
PrintApplicationInfo.print(context);
112+
}
113+
114+
}
115+
```
116+
91117
## Quick Start
92118
[Quick Start](https://springboot.plus/guide/quick-start.html)
93119

0 commit comments

Comments
 (0)