@ModelAttribute

From NovaOrdis Knowledge Base
Revision as of 23:52, 14 October 2018 by Ovidiu (talk | contribs) (Created page with "=Internal= * Spring MVC Concepts =Overview= <syntaxhighlight lang='java'> public class ...Controller { @ModelAttribute(n...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

Overview

public class ...Controller {

    @ModelAttribute(name = "something")
    public Something something() {
        return new Something();
    }