Merge pull request #6200 from EightMonth/springboot3

修复 #6169
This commit is contained in:
JEECG
2024-04-30 13:52:00 +08:00
committed by GitHub

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;
}
};