-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SimpleREST return "Internal Server Error" #342
Comments
I can't reproduce. Do you have anything in the server logs? |
Weird. Can you add this to the router definition and try again: router.errorHandler(500, rc -> {
System.err.println("Handling failure");
Throwable failure = rc.failure();
if (failure != null) {
failure.printStackTrace();
}
}); |
The reson is
I add this , and it works.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i can run the SimpleREST's main method ,but when i call /products in chrome ,the api return "Internal Server Error" with http code 500 and show nothing in my ide console.please tell me some.thanks
The text was updated successfully, but these errors were encountered: