Frank Serkland wrote:I just tried that and got this exception trace.
Rob Spoor wrote:Frank, did you happen to annotate the class with @RestController? Because @RestController implies not just @Controller, but also @ResponseBody. This means that the "welcome" will not be treated as the name of the JSP file to render, but as the response body.
Bear Bibeault wrote:A quick web search reveals that you might just be missing a "/" in
Bear Bibeault wrote:I know diddly about Spring or Spring Boot, but it's pretty clear that you've mapped the URI /welcome to a method that returns the string "welcome". There's nothing there that would cause the request to hook up with your JSP that I can see.