If i put an object named "foo" into model in Spring controller, and want to limit its scope, how can I do this.
Let's say I have a page which uses a jsp tag that takes as a parameter "foo". If I call the tag inside jsp, like <tag foo="${bar}" />
, it seems to me that the model "foo" is interfering with the "bar".
Or even if not, if I just want to limit the scope of model "foo" to be accessible only in jsp page, and not in others (either in 'ed page or in a tag that first jsp page calls.)