使用 Spring formView 嵌套 Velocity 模板
我有一个 Spring 应用程序,我想为其添加登录功能。我想将登录表单放在网站的标题中。这意味着它将包含在多个页面中。在定义表单提交到的控制器时,我应该指定什么作为 formView
?
是否可以将标头中包含的登录模板(包含在每个标头中:-))指定为 formView
?
感谢您的帮助。如果有任何不清楚的地方,我很乐意提供更多详细信息或显示代码。
I have a Spring app that I'd like to add a login feature to. I'd like to put the login form in the header of the site. This means that it'll be included on several pages. When defining the controller that the form submits to, what do I specify as the formView
?
Is it possible to specify the login template that's included in header (that's included in each head :-)) as the formView
?
Thanks for the help. If anything is unclear than I'm happy to provide more details or show code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没关系。我意识到 Velocity 模板是否包含在另一个文件中并不重要。我将其添加到模板中:
我的控制器看起来像这样:
并且它可以工作。
Nevermind. I realized that it doesn't matter whether the Velocity template is included in another file. I added this to the template:
and my controller looks like this:
and it works.