質問編集履歴
3
エラー改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,6 +50,60 @@
|
|
50
50
|
|
51
51
|
|
52
52
|
|
53
|
+
```
|
54
|
+
|
55
|
+
Type Exception Report
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
Message Request header is too large
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
Description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
Exception
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
java.lang.IllegalArgumentException: Request header is too large
|
72
|
+
|
73
|
+
org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:779)
|
74
|
+
|
75
|
+
org.apache.coyote.http11.Http11InputBuffer.parseHeader(Http11InputBuffer.java:946)
|
76
|
+
|
77
|
+
org.apache.coyote.http11.Http11InputBuffer.parseHeaders(Http11InputBuffer.java:593)
|
78
|
+
|
79
|
+
org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:284)
|
80
|
+
|
81
|
+
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
|
82
|
+
|
83
|
+
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893)
|
84
|
+
|
85
|
+
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1707)
|
86
|
+
|
87
|
+
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
|
88
|
+
|
89
|
+
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
|
90
|
+
|
91
|
+
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
|
92
|
+
|
93
|
+
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
|
94
|
+
|
95
|
+
java.base/java.lang.Thread.run(Thread.java:834)
|
96
|
+
|
97
|
+
Note The full stack trace of the root cause is available in the server logs.
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
```
|
104
|
+
|
105
|
+
|
106
|
+
|
53
107
|
### 該当のソースコード
|
54
108
|
|
55
109
|
|
2
タイトル改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
|
-
|
3
|
+
http://localhost:8080/ にアクセスして
|
4
4
|
|
5
5
|
spring bootでhello word と表示させたい
|
6
6
|
|
1
タイトル改善
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
hello wordが表示されない
|
1
|
+
hello wordが表示されない HTTP Status 400 – Bad Request
|
test
CHANGED
File without changes
|