lin-cms-spring-boot icon indicating copy to clipboard operation
lin-cms-spring-boot copied to clipboard

🔨 基于SpringBoot的CMS/DMS/管理系统开发框架

Results 56 lin-cms-spring-boot issues
Sort by recently updated
recently updated
newest added

分支:master 在AbstractUploader上传基类里面,发现在进行文件后缀的包含与排除判断时,两个方法都采用了相同的判断逻辑,按道理findInExclude()内部循环的时候应该是equals返回false,最后返回true吧;请问这是否正确? ![image](https://user-images.githubusercontent.com/19581432/149813377-6b731494-57e6-4f66-8a48-85c865cbf34a.png)

项目中引入io.github.talelin.autoconfigure,但未使用 报错: *************************** APPLICATION FAILED TO START *************************** Description: Field authorizeVerifyResolver in io.github.talelin.autoconfigure.interceptor.AuthorizeInterceptor required a bean of type 'io.github.talelin.autoconfigure.interfaces.AuthorizeVerifyResolver' that could not be found. The injection point has the following...

Snyk has created this PR to upgrade com.qiniu:qiniu-java-sdk from 7.8.0 to 7.9.0. :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify...

目前 `lin-cms-java-core` 中对权限判断时,会根据method name和class name生成签名,如果编写controller时出现重载,就会导致走到错误的权限判断逻辑中。建议将这点写入文档或把方法签名用 `Method.toGenericString()` 生成。

**描述 bug** - 你是如何操作的? - 发生了什么? iv偏移量为null - 你觉得应该出现什么? **你使用哪个版本出现该问题?** 最新版 如果使用`master`,请表明是 master 分支,否则给出具体的版本号 **如何再现** If your bug is deterministic, can you give a minimal reproducing code? Some bugs are...

修正一些raw use,未经检查的类型转换的提示,去除了用户权限处的一处Map,以及将分组id作为Long存入Map的类型错误

phone那里用的@Max注解,导致无法正常注册 `@Data @NoArgsConstructor @EqualField(srcField = "password", dstField = "confirmPassword", message = "{password.equal-field}") public class RegisterDTO { @NotBlank(message = "{username.not-blank}") @Length(min = 2, max = 10, message = "{username.length}") private String...

单个数据新增太麻烦了,lin-cms-spring-boot 和vue 可否加入excel 批量导入和导出功能 。

enhancement

目前在实际开发中遇到很多下列情况 1. 现实中,很多情况都需要对用户直接赋予权限,目前只能根据角色来确定权限; 2. 现实中,有部分权限可以不存在在任何组中,而是直接赋予给用户的; 3. 需要有比组更上一层的实现,如部门,一个部门包含有几个角色组,简化人员管理; 4. lin_permission 中没有code字段,导致在前端根据 permission 做权限管理的时候,要使用中文的 name ,比较奇怪