I am new to Spring MVC.
In my project I print the java object values in JSP using JSTL.
I assign the values in map object like below.
Map<String, Object> result =HashMap<String,Object>();
In Struts2 I get the java object value from ValueStack and print them in JSP using Struts2 tag.
My Questions are:
- Is there any ValueStack available in Spring MVC like it is in Struts2 ?
- If yes, which is its maximum capacity ?
- Which is the right language for displaying values to JSPin Spring MVC ?