We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e6c811 commit 250965eCopy full SHA for 250965e
1 file changed
src/main/java/com/talexframe/frame/core/modules/network/connection/RequestAnalyser.java
@@ -30,10 +30,7 @@
30
import java.lang.reflect.Method;
31
import java.lang.reflect.Parameter;
32
import java.nio.charset.StandardCharsets;
33
-import java.util.ArrayList;
34
-import java.util.HashMap;
35
-import java.util.List;
36
-import java.util.Map;
+import java.util.*;
37
38
/**
39
* 请求解析器 <br /> {@link com.talexframe.frame.core.modules.network.connection Package }
@@ -134,7 +131,7 @@ private void process() {
134
131
return;
135
132
}
136
133
137
- if ( json == null && methodReceiver.tRequest.parseJSON() ) {
+ if ( json == null && methodReceiver.tRequest.parseJSON() && !Objects.equals(methodReceiver.supportMethodName, "GET") ) {
138
139
log.warn("[解析层] DataNull # MissingBodyData");
140
0 commit comments