Код: Выделить всё
java -jar $JETTY_HOME/start.jar --add-to-start=jspКод: Выделить всё
@Controller
@RequestMapping("/html")
public class HtmlHelloController {
@RequestMapping("/hello")
public String getHtmlHello() {
return "/html/htmlHello.html";
}
}
Код: Выделить всё
Mar 20, 2023 2:06:52 PM org.springframework.web.servlet.DispatcherServlet noHandlerFound
WARNING: No mapping for GET /web-app-spring/html/htmlHello.html
Подробнее здесь: https://stackoverflow.com/questions/757 ... spring-mvc