在此网址:Injecting JSP from Spring MVC controller
他们有以下代码片段:
@RequestMapping(value = "/widgets.html", method = RequestMethod.POST)
public ModelAndView widgets(@Model Fruit fruit, @RequestParam("texture") String texture)
我的问题是@Model注释,需要导入哪些库才能使用它?
提前谢谢你, 韦斯
答案 0 :(得分:1)
我认为是
import org.springframework.ui.Model;
将@Model
替换为@ModelAttribute Fruit fuit
类网格。
导入org.springframework.web.bind.annotation.ModelAttribute;
看看这里:http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html
答案 1 :(得分:0)
我认为这是@ModelAttribute的错字。
@Model是J2EE 6 CDI的类级别注释