-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 4.4.0.RELEASE 新增黑白名单、脱敏工具、BladeRedis新版工具
- Loading branch information
smallchill
committed
Jan 18, 2025
1 parent
74669ce
commit cd04e83
Showing
18 changed files
with
376 additions
and
77 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
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
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
44 changes: 44 additions & 0 deletions
44
blade-service/blade-log/src/main/java/org/springblade/core/log/pojo/LogApiVO.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,44 @@ | ||
/** | ||
* Copyright (c) 2018-2099, Chill Zhuang 庄骞 ([email protected]). | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.springblade.core.log.pojo; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnore; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import org.springblade.core.log.model.LogApi; | ||
|
||
import java.io.Serial; | ||
|
||
/** | ||
* LogApiVO | ||
* | ||
* @author Chill | ||
*/ | ||
@Data | ||
@EqualsAndHashCode(callSuper = true) | ||
public class LogApiVO extends LogApi { | ||
|
||
@Serial | ||
private static final long serialVersionUID = 1L; | ||
|
||
/** | ||
* 操作提交的数据 | ||
*/ | ||
@JsonIgnore | ||
private String params; | ||
|
||
|
||
} |
54 changes: 54 additions & 0 deletions
54
blade-service/blade-log/src/main/java/org/springblade/core/log/pojo/LogErrorVO.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,54 @@ | ||
/** | ||
* Copyright (c) 2018-2099, Chill Zhuang 庄骞 ([email protected]). | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.springblade.core.log.pojo; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnore; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import org.springblade.core.log.model.LogError; | ||
|
||
import java.io.Serial; | ||
|
||
/** | ||
* LogErrorVO | ||
* | ||
* @author Chill | ||
*/ | ||
@Data | ||
@EqualsAndHashCode(callSuper = true) | ||
public class LogErrorVO extends LogError { | ||
|
||
@Serial | ||
private static final long serialVersionUID = 1L; | ||
|
||
/** | ||
* 操作提交的数据 | ||
*/ | ||
@JsonIgnore | ||
private String params; | ||
|
||
/** | ||
* 堆栈信息 | ||
*/ | ||
@JsonIgnore | ||
private String stackTrace; | ||
|
||
/** | ||
* 异常消息 | ||
*/ | ||
@JsonIgnore | ||
private String message; | ||
} |
Oops, something went wrong.