Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的jsp中,我想获取当前的域名。我怎样才能使用 jstl 得到这个?
例如,如果用户正在浏览站点“www.somesite.com”,我想在 jsp 中显示该域“www.somesite.com”。怎么做 ?
我们可以从请求对象中获取它吗?
或者,还有其他方法吗?
<c:out value="${pageContext.request.serverName}" />