@SessionAttributes: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Controller =Overview= <syntaxhighlight lang='java'> @Controller @SessionAttributes("sessionAttr1", "sessionAttr2...") |
|||
Line 11: | Line 11: | ||
// ... | // ... | ||
} | } | ||
</syntaxhighlight | </syntaxhighlight> |
Revision as of 23:58, 14 October 2018
Internal
Overview
@Controller
@SessionAttributes("sessionAttr1", "sessionAttr2")
public class ...Controller {
// ...
}