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.
所以我试图在我接管的一个应用程序中摆脱一些脚本。其中之一是:<%=InetAddress.getLocalHost().getHostName()%>
<%=InetAddress.getLocalHost().getHostName()%>
但是,我无法找到给出相同结果的 JSTL 标记。我想${pageContext.request.serverName}会做的伎俩。
${pageContext.request.serverName}
但前者在 localhost 上运行时给出计算机名称,而后者返回 localhost
前者给出计算机名称;后者给出了客户端在 URL 中使用的名称。