如何通过 ui:include 调用 Spring MVC 控制器?
我正在开发一个使用 JSP 构建的遗留项目。 JSP 页面通过
包含 HTML 页面。但所包含的页面本质上是到 Spring MVC 控制器的映射。
现在我切换到 JSF 并将
替换为
。但现在,对 Spring MVC servlet 的调用不再起作用了。
显然,JSF 的
和
之间是有区别的。有人知道如何在 JSF 中调用 Spring MVC 组件吗?
I am working on a legacy project that was built with JSP. The JSP page included an HTML page via <jsp:include>
. But the included page was essentially a mapping to a Spring MVC controller.
Now I switched to JSF and replaced the <jsp:include>
with a <ui:include>
. But now, the call to the Spring MVC servlet does not work anymore.
Obviously there is a difference between <jsp:include>
and <ui:include>
of JSF. Does anybody know, how I can call a spring MVC component in JSF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在,我们通过使用 JQuery 的 load 方法调用 SpringMVC servlet 来解决这个问题。我们暂时避免使用 ui:include 。
For now, we solved this by using JQuery's load method to call the SpringMVC servlet. We refrained using ui:include for now.