Merge pull request #6200 from EightMonth/springboot3

修复 #6169
pull/6345/head v3.6.3_springboot3
JEECG 2024-04-30 13:52:00 +08:00 committed by GitHub
commit b8e0d4391d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -159,6 +159,9 @@ public class AutoLogAspect {
if(value!=null && value.toString().length()>length){
return false;
}
if(value instanceof MultipartFile){
return false;
}
return true;
}
};