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.
request.setAttribute() 和 model.addAttribute 之间有什么区别?我是关于这个 api 的 servlets api 和 spring-mvc 包装器
模型是一种抽象。您可以将 Spring 与 servlet、portlet 或其他前端技术一起使用,并且模型属性将始终在您各自的视图中可用。
另一方面,HttpServletRequest 是特定于 Servlet 的对象。Spring 还将使请求属性在您的视图中可用,因此从用户的角度来看并没有太大区别。
另一方面是模型更轻巧,使用起来更方便。