提交更改
This commit is contained in:
@@ -64,6 +64,9 @@ public class TaskOperationLockConfig implements WebMvcConfigurer {
|
||||
return true;
|
||||
}
|
||||
String uri = request.getRequestURI();
|
||||
if ("POST".equals(request.getMethod()) && TASK_RESULT_PATH.matcher(uri == null ? "" : uri).matches()) {
|
||||
return true;
|
||||
}
|
||||
Matcher matcher = TASK_PATH.matcher(uri == null ? "" : uri);
|
||||
if (!matcher.matches()) {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user