Error code 모음/5. JAVA, Spring errors

[Java Error] Invalid character found in method name. HTTP method names must be tokens

쟈누이 2020. 11. 9. 21:36
반응형

 

에러 발생 이유

위 Exception 은 HTTPS 의 사용이 어려운 클라이언트의 

엔드포인트로부터 HTTPS 실행 요청이 들어왔을 경우 발생할 수 있는 예외이다.

 

해결 방법

나의 경우에는 https:// 를 http:// 로 고쳤더니 해결이 되었다.

 

https:// 였을 경우

 

http:// 고친 이후

 

자세한 사항은 아래 링크를 통해 확인하면 된다.

 

참고 링크

stackoverflow.com/questions/42218237/tomcat-java-lang-illegalargumentexception-invalid-character-found-in-method-na

 

Tomcat: java.lang.IllegalArgumentException: Invalid character found in method name. HTTP method names must be tokens

I am getting below stack trace when I am deploying my application in a multi-server Apache Tomcat 8 environment. I am getting this error frequently, and it seems it is blocking the tomcat thread: I...

stackoverflow.com

 

반응형