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
401c02c2
Commit
401c02c2
authored
Aug 21, 2019
by
xiandafu
Browse files
增加说明
parent
d2987703
Changes
4
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
401c02c2
...
...
@@ -4,6 +4,17 @@
一个基于SpringBoot 2 的管理后台系统,有数十个基于此的商业应用,包含了用户管理,组织机构管理,角色管理,功能点管理,菜单管理,权限分配,数据权限分配,代码生成等功能
相比其他开源的后台开发平台脚手架,SpringBoot-Plus 使用简单,可以轻易完成中型,大型系统开发。同时技术栈较为简单
如何判断一个开源开发平台适合自己
*
要明白单体系统,系统拆分,微服务三个不同构建开发平台方式,plus支持单体和系统拆分,一般而言,后台管理系统适合单体和系统拆分。微服务并不适合系统管理,以我知道的互联网大厂,央企后台管理系统,还是以前俩个为多
*
你需要的是技术框架还是开发平台,技术框架就是技术堆砌,开发平台必须具备一定复杂基础业务功能
*
看权限模型,支持功能权限和数据权限。plus具备强大的功能权限和数据权限,且可以扩展n种数据权限
*
看用户是否能属于多个部门,用户兼职情况很常见
*
看数据字典是否支持级联,数据字典级联太常见了,平台需要提供数据和前端的支持。puls系统支持
*
看代码生成是否支持预览,为什么要预览,因为生成会覆盖,预览可以修改已经生成的代码
Plus系统是一个使用简单,功能较为复杂的开源系统,已经数百家商业公司采用
系统基于Spring Boot2.1技术,前端采用了Layui2.4。数据库以MySQL/Oracle/Postgres/SQLServer为实例,理论上是跨数据库平台.
基本技术栈来源于我为电子工业出版社编写的的
[
<<Spring Boot 2 精髓 >>
](
https://item.jd.com/12214143.html
)
(
这本书每一章也有各种例子,但Springboot-plus
更偏向于应用而不是教学)
...
...
@@ -14,11 +25,9 @@
技术交流群:252010126
免费视频介绍:https://pan.baidu.com/s/1dFPoaT7
视频介绍:https://pan.baidu.com/s/1dFPoaT7
w

...
...
admin-console/src/main/resources/application.properties
View file @
401c02c2
...
...
@@ -3,7 +3,6 @@ spring.datasource.baseDataSource.username=root
spring.datasource.baseDataSource.password
=
123456
spring.datasource.baseDataSource.driver-class-name
=
com.mysql.cj.jdbc.Driver
beetlsql.ds.baseDataSource.basePackage
=
com
beetlsql.ds.baseDataSource.dbStyle
=
org.beetl.sql.core.db.MySqlStyle
#beetlsql.basePackage=com.ibeetl,com.xxx.yourpackage
...
...
admin-core/pom.xml
View file @
401c02c2
...
...
@@ -44,7 +44,7 @@
<dependency>
<groupId>
com.ibeetl
</groupId>
<artifactId>
beetl-framework-starter
</artifactId>
<version>
1.2.1
0
.RELEASE
</version>
<version>
1.2.1
1
.RELEASE
</version>
</dependency>
<dependency>
...
...
pom.xml
View file @
401c02c2
...
...
@@ -31,6 +31,11 @@
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-configuration-processor
</artifactId>
<optional>
true
</optional>
</dependency>
</dependencies>
<build>
...
...
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