Tag: modelattribute

spring在form标签中的modelAttribute和commandName属性之间的区别?

我是Spring 3的新手,所以我可能会问一个不好的标准问题。 我在jsp中看到了两个不同的表单标签属性 <form:form method="post" modelAttribute="login"> 在这个属性modelAttribute是表单对象的名称,其属性是用来填充表单。 我用它发布表单和控制器我用@ModelAttribute来捕获价值,调用validation,应用业务逻辑。 这里一切都很好。 现在 <form:form method="post" commandName="login"> 这个属性期望什么,它也是一个表单对象,其属性我们将填充?

Spring MVC中的@ModelAttribute是什么?

Spring MVC中@ModelAttribute的用途和用法是什么?