🔨 修改项目加密模块.
This commit is contained in:
@@ -118,7 +118,7 @@
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dromara.visor</groupId>
|
||||
<artifactId>orion-visor-spring-boot-starter-encrypt</artifactId>
|
||||
<artifactId>orion-visor-spring-boot-starter-cipher</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
||||
@@ -73,7 +73,6 @@ public class OperatorLogAspect {
|
||||
.maxPoolSize(1)
|
||||
.useLinkedBlockingQueue()
|
||||
.allowCoreThreadTimeout()
|
||||
.useLinkedBlockingQueue()
|
||||
.build();
|
||||
|
||||
private final OperatorLogFrameworkService operatorLogFrameworkService;
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
</parent>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>orion-visor-spring-boot-starter-encrypt</artifactId>
|
||||
<artifactId>orion-visor-spring-boot-starter-cipher</artifactId>
|
||||
<name>${project.artifactId}</name>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@@ -42,11 +42,17 @@ const fieldConfig = {
|
||||
label: '创建人',
|
||||
dataIndex: 'creator',
|
||||
slotName: 'creator',
|
||||
width: 148,
|
||||
ellipsis: true,
|
||||
tooltip: true,
|
||||
default: true,
|
||||
}, {
|
||||
label: '修改人',
|
||||
dataIndex: 'updater',
|
||||
slotName: 'updater',
|
||||
width: 148,
|
||||
ellipsis: true,
|
||||
tooltip: true,
|
||||
}
|
||||
] as CardField[]
|
||||
} as CardFieldConfig;
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
<module>orion-visor-spring-boot-starter-websocket</module>
|
||||
<module>orion-visor-spring-boot-starter-redis</module>
|
||||
<module>orion-visor-spring-boot-starter-desensitize</module>
|
||||
<module>orion-visor-spring-boot-starter-encrypt</module>
|
||||
<module>orion-visor-spring-boot-starter-cipher</module>
|
||||
<module>orion-visor-spring-boot-starter-log</module>
|
||||
<module>orion-visor-spring-boot-starter-storage</module>
|
||||
<module>orion-visor-spring-boot-starter-security</module>
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dromara.visor</groupId>
|
||||
<artifactId>orion-visor-spring-boot-starter-encrypt</artifactId>
|
||||
<artifactId>orion-visor-spring-boot-starter-cipher</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dromara.visor</groupId>
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dromara.visor</groupId>
|
||||
<artifactId>orion-visor-spring-boot-starter-encrypt</artifactId>
|
||||
<artifactId>orion-visor-spring-boot-starter-cipher</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dromara.visor</groupId>
|
||||
|
||||
@@ -27,6 +27,7 @@ import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.Parameter;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.dromara.visor.common.validator.group.Page;
|
||||
import org.dromara.visor.framework.biz.operator.log.core.annotation.OperatorLog;
|
||||
import org.dromara.visor.framework.log.core.annotation.IgnoreLog;
|
||||
import org.dromara.visor.framework.log.core.enums.IgnoreLogMode;
|
||||
@@ -92,7 +93,7 @@ public class DictKeyController {
|
||||
@PostMapping("/query")
|
||||
@Operation(summary = "分页查询全部字典配置项")
|
||||
@PreAuthorize("@ss.hasPermission('infra:dict-key:query')")
|
||||
public DataGrid<DictKeyVO> getDictKeyPage(@Validated @RequestBody DictKeyQueryRequest request) {
|
||||
public DataGrid<DictKeyVO> getDictKeyPage(@Validated(Page.class) @RequestBody DictKeyQueryRequest request) {
|
||||
return dictKeyService.getDictKeyPage(request);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user