🐛 消除step-2打包警告
This commit is contained in:
parent
a317acdb63
commit
0c7110e1fc
|
@ -1,5 +1,9 @@
|
||||||
# Spring Security 6 入门指南
|
# Spring Security 6 入门指南
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
>
|
||||||
|
> 打包:mvn clean package -DskipTests
|
||||||
|
|
||||||
整个数据库的表构建差不多是这样的,也是简化的,作为一个小demo讲解。
|
整个数据库的表构建差不多是这样的,也是简化的,作为一个小demo讲解。
|
||||||
|
|
||||||

|

|
||||||
|
@ -1520,4 +1524,3 @@ Bunny
|
||||||
# 解析的用户权限
|
# 解析的用户权限
|
||||||
[permission::read, role::read]
|
[permission::read, role::read]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,9 @@
|
||||||
package com.spring.step2.domain.dto;
|
package com.spring.step2.domain.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@AllArgsConstructor
|
|
||||||
@NoArgsConstructor
|
|
||||||
@Builder
|
|
||||||
@Schema(name = "LoginRequest", title = "LoginRequest登录参数", description = "登录请求参数")
|
@Schema(name = "LoginRequest", title = "LoginRequest登录参数", description = "登录请求参数")
|
||||||
public class LoginDto {
|
public class LoginDto {
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
server:
|
server:
|
||||||
port: 8772
|
port: 8773
|
||||||
|
|
||||||
spring:
|
spring:
|
||||||
application:
|
application:
|
||||||
|
@ -47,7 +47,7 @@ logging:
|
||||||
root: info
|
root: info
|
||||||
com.spring: debug
|
com.spring: debug
|
||||||
org.springframework.security: debug
|
org.springframework.security: debug
|
||||||
|
|
||||||
jwtToken:
|
jwtToken:
|
||||||
# 密钥
|
# 密钥
|
||||||
secret: aVeryLongAndSecureRandomStringWithAtLeast32Characters
|
secret: aVeryLongAndSecureRandomStringWithAtLeast32Characters
|
||||||
|
|
Loading…
Reference in New Issue