查看Spring MVC的部分内容
我正在阅读 逐步开发 Spring Framework MVC 应用程序< /a> 特别是创建视图< /a> 部分。
它使用 hello.jsp。
我对此很陌生。我假设我们可以使用任何客户端框架(如 GWT、jQueryUI 等)的 View 部分,而无需使用 JSP。
正确的?
预先感谢您的帮助。
I am reading the Developing a Spring Framework MVC application step-by-step specifically the Create the View section.
It uses hello.jsp.
I am new with this. I assume that we can use the View part any client framework like GWT, jQueryUI, etc. without using JSP.
Correct?
Thanks in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring 与多种开箱即用的视图技术集成,并且它是可扩展的。查看“解析视图与 ViewResolver 接口”,了解常见视图实现的概述和列表。要使用某些视图技术,您必须拥有 ViewResolver 的实现。
Spring integrates with several view technologies out of the box, and it's built to be extensible. Check out "Resolving views with the ViewResolver interface" for an overview and list of common view implementations. To use some view technology, you have to have a ViewResolver implementation for it.