Hi all,
I am trying to learn the Spring MVC concept with this tutorial:
https://netbeans.org/kb/docs/web/quickstart-webapps-spring.html
I have followed it until the end, but there is something that doesnt works. I have tried several ways to solve it and the tutorial has been followed as described, but the page after filling the form with the name just appears blank.
This small application just reads a name with the Form, it later displays a second page saying: "Hello {name}".
I have uploaded the files to Github, the part of the code that is not shown, is this one:
<h1>${helloMessage}</h1>
This code is written, in the line 15 from the file "helloView.jsp", found in the WEB > WEB-INF >
JSP > helloView.jsp.
That code depends on this one written in the line 47, for the "HelloController.java" file found in this path: src >
Java > Controller > HelloController.java
This are the link of the Github repository, any help to solve this is really appreciated.
Hernán
HelloView.jsp:
https://github.com/Rubytux/tutorial-spring-mvc-netbeans/blob/master/web/WEB-INF/jsp/helloView.jsp
HelloController.java:
https://github.com/Rubytux/tutorial-spring-mvc-netbeans/blob/master/src/java/controller/HelloController.java