Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialGeorge Siaskov
1,292 PointsI got 500 Internal Error after submitting a form
I don't have any errors but when clicked submit - 500 Internal Errow. That is my code:
public class main {
public static void main(String[] args) {
get("/", (req, res) -> {
return new ModelAndView(null, "index.hbs");
}, new HandlebarsTemplateEngine());
post("/sign-in", (req, res) -> {
Map<String, String> model = new HashMap<>();
model.put("username", req.queryParams("username"));
return new ModelAndView(model, "sign-in.hbs");
}, new HandlebarsTemplateEngine());
}
}
Print Screen of full code - https://yadi.sk/i/wWIbleyKtmBD8
Craig Dennis
Treehouse TeacherLooks like the error might be in the template. Can you copy the stack trace from the console in IntelliJ please?
1 Answer
George Siaskov
1,292 PointsThe error was very silly :)
I typed <form action="/siNg-in" instant of sign-in ???.
George Siaskov
1,292 PointsThank you everybody!
Karolin Rafalski
11,368 PointsKarolin Rafalski
11,368 PointsA 500 error is usually an error with the server. Is your server up and running? Are there any settings that may not be right with your server (password/login)?