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
0fffd349
Commit
0fffd349
authored
Jul 30, 2019
by
xiandafu
Browse files
1.x版本的最后更新
parent
a3b5a7a7
Changes
6
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
0fffd349
# springboot-plus
# springboot-plus
一个基于SpringBoot 2 的管理后台系统,包含了用户管理,组织机构管理,角色管理,功能点管理,菜单管理,权限分配,数据权限分配,代码生成等功能
一个基于SpringBoot 2 的管理后台系统,
有数十个基于此的商业应用,
包含了用户管理,组织机构管理,角色管理,功能点管理,菜单管理,权限分配,数据权限分配,代码生成等功能
相比其他开源的后台开发平台脚手架,SpringBoot-Plus
具有一定的复杂度
相比其他开源的后台开发平台脚手架,SpringBoot-Plus
使用简单,可以轻易完成中型,大型系统开发。同时技术栈较为简单
系统基于Spring Boot2.1技术,前端采用了Layui2.4。数据库以MySQL/Oracle/Postgres/SQLServer为实例,理论上是跨数据库平台.
系统基于Spring Boot2.1技术,前端采用了Layui2.4。数据库以MySQL/Oracle/Postgres/SQLServer为实例,理论上是跨数据库平台.
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
当前版本:1.3.0
当前版本:1.3.0
技术交流群:219324263(满)
636321496
技术交流群:
636321496,
219324263(满)
开源地址:https://gitee.com/xiandafu/springboot-plus
开源地址:https://gitee.com/xiandafu/springboot-plus
...
@@ -259,8 +259,9 @@ plus是一个适合单体系统,系统拆分的java快速开发平台,也可
...
@@ -259,8 +259,9 @@ plus是一个适合单体系统,系统拆分的java快速开发平台,也可
plus系统足够聚焦内核功能,简单易用功能强大。如果你需要技术支持,可以通过如下方式
plus系统足够聚焦内核功能,简单易用功能强大。如果你需要技术支持,可以通过如下方式
*
加入qq技术交流群:219324263(满)
636321496
*
加入qq技术交流群:
636321496,
219324263(满)
*
购买我的《
[
Spring Boot实战权威指南 基础篇》
](
https://www.kancloud.cn/xiandafu/springboot2-in-practice/
)
,从书里解答你的问题
*
SpringBoot基础知识:
购买我的《
[
Spring Boot实战权威指南 基础篇》
](
https://www.kancloud.cn/xiandafu/springboot2-in-practice/
)
,从书里解答你的问题
*
ibeetl.com社区搜索你的问题
*
ibeetl.com社区搜索你的问题
*
[
微信加入我的知识星球,与我一起探索Java技术,连接铁杆粉丝
](
https://wx.zsxq.com/dweb/#/index/824551244882
)
(
提供半商业技术支持
)
*
提供付费商业技术支持,一年仅需要99员,微信扫描

admin-console/src/main/java/com/ibeetl/admin/console/web/UserConsoleController.java
View file @
0fffd349
...
@@ -21,6 +21,7 @@ import org.springframework.stereotype.Controller;
...
@@ -21,6 +21,7 @@ import org.springframework.stereotype.Controller;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
org.springframework.web.servlet.ModelAndView
;
import
org.springframework.web.servlet.ModelAndView
;
...
@@ -138,7 +139,7 @@ public class UserConsoleController {
...
@@ -138,7 +139,7 @@ public class UserConsoleController {
@PostMapping
(
MODEL
+
"/update.json"
)
@PostMapping
(
MODEL
+
"/update.json"
)
@Function
(
"user.update"
)
@Function
(
"user.update"
)
@ResponseBody
@ResponseBody
public
JsonResult
update
(
@Validated
(
ValidateConfig
.
UPDATE
.
class
)
CoreUser
user
)
{
public
JsonResult
update
(
@Validated
(
ValidateConfig
.
UPDATE
.
class
)
CoreUser
user
)
{
boolean
success
=
userConsoleService
.
updateTemplate
(
user
);
boolean
success
=
userConsoleService
.
updateTemplate
(
user
);
if
(
success
)
{
if
(
success
)
{
this
.
platformService
.
clearFunctionCache
();
this
.
platformService
.
clearFunctionCache
();
...
...
admin-core/pom.xml
View file @
0fffd349
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
<dependency>
<dependency>
<groupId>
com.ibeetl
</groupId>
<groupId>
com.ibeetl
</groupId>
<artifactId>
beetl-framework-starter
</artifactId>
<artifactId>
beetl-framework-starter
</artifactId>
<version>
1.2.
5
.RELEASE
</version>
<version>
1.2.
6
.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
...
...
admin-core/src/main/java/com/ibeetl/admin/core/conf/CustomErrorController.java
View file @
0fffd349
...
@@ -60,7 +60,9 @@ public class CustomErrorController extends AbstractErrorController {
...
@@ -60,7 +60,9 @@ public class CustomErrorController extends AbstractErrorController {
String
requestPath
=
(
String
)
model
.
get
(
"path"
);
String
requestPath
=
(
String
)
model
.
get
(
"path"
);
List
<
FieldError
>
filedErrors
=
this
.
getFieldError
(
model
,
cause
);
List
<
FieldError
>
filedErrors
=
this
.
getFieldError
(
model
,
cause
);
//后台打印日志信息方方便查错
//后台打印日志信息方方便查错
log
.
info
(
status
+
":"
+
message
+
filedErrors
,
cause
);
log
.
info
(
status
+
":"
+
message
+
filedErrors
,
cause
);
log
.
info
(
"requestPath"
+
":"
+
requestPath
);
log
.
info
(
"requestPath"
+
":"
+
requestPath
);
...
...
doc/readme/xingqiu.jpg
0 → 100644
View file @
0fffd349
50.6 KB
doc/readme/xingqiu.png
0 → 100644
View file @
0fffd349
219 KB
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