-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8151cb8
commit 3e6ad8e
Showing
117 changed files
with
1,174 additions
and
684 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,31 @@ | ||
# CHANGELOG TODO | ||
|
||
## [V1.4] | ||
- 部门树形列表 | ||
- :white_check_mark: 部门树形列表 | ||
|
||
## [V1.5] | ||
- 代码生成起优化,是否生成自定义update方法,生成version,deleted注解 | ||
- 黑白名单,配置文件和数据库可配置,并缓存到Redis | ||
- 代码生成器优化,是否生成自定义update方法,生成version,deleted注解 | ||
- :white_check_mark: 黑白名单,配置文件和数据库可配置,并缓存到Redis | ||
- Redis Cache注解使用 | ||
- ok http工具类 | ||
- Excel解析,导入导出 | ||
- 项目代码遵循阿里代码规范优化 | ||
- :white_check_mark: 项目代码遵循阿里代码规范优化 | ||
- 字典表 | ||
- 配置参数表 | ||
- 上传文件附件表 | ||
- Redis分布式锁 | ||
- 接口限流,ip限流,频率限流 | ||
- Shiro Redis缓存 | ||
- ApplicationRunner | ||
|
||
- HikariCP | ||
|
||
## [V1.6] | ||
- Spring security集成 | ||
- HikariCP | ||
|
||
|
||
## [V2.0] | ||
- 当主键类型为自动生成时,ID生成了NotNull注解,应去掉 | ||
- 是否生成list方法 | ||
- 是否生成id,name方法,提供公共的id,name获取方法 | ||
- fix SysRoleServiceImpl.java if(deleteSet.size() > 0){ // 删除权限关联 | ||
- SysPermissionMapper.xml order by p.sort asc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/main/java/io/geekidea/springbootplus/common/controller/CsrfController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package io.geekidea.springbootplus.common.controller; | ||
|
||
import io.geekidea.springbootplus.util.UUIDUtil; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RequestMethod; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
/** | ||
* CSRF | ||
* | ||
* @author geekidea | ||
* @date 2019/12/10 | ||
**/ | ||
@RestController | ||
public class CsrfController { | ||
|
||
@RequestMapping(value = "/csrf", method = {RequestMethod.GET, RequestMethod.POST}) | ||
public String csrf() { | ||
return UUIDUtil.getUuid(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.