質問編集履歴
3
エラー改善
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -24,6 +24,33 @@
|
|
|
24
24
|
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
```
|
|
28
|
+
Type Exception Report
|
|
29
|
+
|
|
30
|
+
Message Request header is too large
|
|
31
|
+
|
|
32
|
+
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).
|
|
33
|
+
|
|
34
|
+
Exception
|
|
35
|
+
|
|
36
|
+
java.lang.IllegalArgumentException: Request header is too large
|
|
37
|
+
org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:779)
|
|
38
|
+
org.apache.coyote.http11.Http11InputBuffer.parseHeader(Http11InputBuffer.java:946)
|
|
39
|
+
org.apache.coyote.http11.Http11InputBuffer.parseHeaders(Http11InputBuffer.java:593)
|
|
40
|
+
org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:284)
|
|
41
|
+
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
|
|
42
|
+
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893)
|
|
43
|
+
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1707)
|
|
44
|
+
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
|
|
45
|
+
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
|
|
46
|
+
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
|
|
47
|
+
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
|
|
48
|
+
java.base/java.lang.Thread.run(Thread.java:834)
|
|
49
|
+
Note The full stack trace of the root cause is available in the server logs.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
|
|
27
54
|
### 該当のソースコード
|
|
28
55
|
|
|
29
56
|
```ここに言語名を入力
|
2
タイトル改善
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
### 前提・実現したいこと
|
|
2
|
-
|
|
2
|
+
http://localhost:8080/ にアクセスして
|
|
3
3
|
spring bootでhello word と表示させたい
|
|
4
4
|
|
|
5
5
|
### 発生している問題・エラーメッセージ
|
1
タイトル改善
title
CHANGED
|
@@ -1,1 +1,1 @@
|
|
|
1
|
-
hello wordが表示されない
|
|
1
|
+
hello wordが表示されない HTTP Status 400 – Bad Request
|
body
CHANGED
|
File without changes
|