1
PROBLEM
When running the project you are not finding the index.jsp. view I am using RESTFUL and WEB in spring boot.
ERROR
o.s.w.s.r.ResourceHttpRequestHandler : Path with "WEB-INF" or "META-INF": [WEB-INF/jsp/index.jsp]
appplication.properties
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
server.servlet.contextPath=/erp-rs
Indexcontroller
@Controller
@RequestMapping("/")
public class IndexController {
@RequestMapping("/")
public String index() {
return "index";
}
Thank you! Everything ok.
– Thiago Gomes