gpt4 book ai didi

java - 如何从 ExternalContext 获取 webapp 的绝对 URL?

转载 作者:太空狗 更新时间:2023-10-29 23:00:19 24 4
gpt4 key购买 nike

我正在尝试从 ExternalContext 检索 Web 应用程序的根 URL , 但无法理解使用哪种方法...

最佳答案

更简洁的方式是:

HttpServletRequest request = (HttpServletRequest) externalContext.getRequest();
String url = request.getRequestURL().toString();
String baseURL = url.substring(0, url.length() - request.getRequestURI().length()) + request.getContextPath() + "/";

然后当方案为 http 且端口为 80 等时,您无需费心省略端口。

关于java - 如何从 ExternalContext 获取 webapp 的绝对 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5153822/

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