In Spring MVC when placing an object in the view model like so:
public String getUser( Model model ) {
//...fetch user...
model.addAttribute( "user", user );
return "viewName";
}
and accessing it's values in the JSP / JSTL view like this:
...
<p>
${user.name}
</p>
...
I'm wondering if it is possible to have code assist for the user
object in the view?
The IDE I'm using is MyEclipse but it would be interesting to know if this is possible in other editors as well.
Thanks.