Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在函数级别有一个 @ModelAttribute 在我的控制器中创建一个对象。我正在使用 DispatcherPortlet,因此我有一个用于 portlet VIEW 模式的控制器。
上述步骤对于表单与创建的对象正确加载是必需的。
用户填写表单并提交它,@ModelAttribute 填充了用户输入,但每次调用控制器时都会创建一个对象,即使表单从未涉及。
我如何设计使对象仅在需要时创建一次。