java - Access Model object in a JSP without using the ModelAndView object? -


I am using spring MVC with annotation, see the following snippet

  @ RequestMapping (value = "/ configuration /", method = RequestMethod.GET) Public MyModel viewconfiguration () {  

Problems reaching the 'MyModel' class in my JSP

How can I do this without using this short story? Syntax means that a model attribute named MyModel becomes myModel (i.e. the first letter is class name with decapitalized).

View name is approximate from URL

Also see:



Comments