gpt4 book ai didi

url - 获取 url 直到上下文路径

转载 作者:行者123 更新时间:2023-12-04 19:49:22 25 4
gpt4 key购买 nike

我使用 Icefaces 和 JSF,但我遇到了这个问题:我有以下网址:http://myMappedServer/myApp/followingThings

我想在我的 xHtml 页面中获取值 http://myMappedServer/myApp如何在不使用托管 bean 的情况下实现这一目标?

最佳答案

使用 EL:#{request.contextPath}.

这对于创建导航链接非常有用,在您的主模板中设置一个 Facelets 变量:)

<ui:param name="root" value="#{request.contextPath}/" />

更新:它是 not recommended to use the full path available in the app server因为不能保证与用户访问您的应用所使用的 URL 相同,所以请注意这一点。

如果你真的想要,你可以can do that , 使用 HttpServletRequest 中提供的一些方法像这样创建一个字符串:

#{request.scheme}://#{request.serverName}:#{request.serverPort}#{request.contextPath}

关于url - 获取 url 直到上下文路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11689634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com