在Spring MVC中获取根基本URL

在Spring MVC中获取根基本URL,第1张

在Spring MVC中获取根/基本URL

如果基本网址是“ http://www.example.com ”,则使用以下内容获取“
www.example.com ”部分,而不使用“ http://”:

从控制器:

@RequestMapping(value = "/someURL", method = RequestMethod.GET)public ModelAndView doSomething(HttpServletRequest request) throws IOException{    //Try this:    request.getLocalName();     // or this    request.getLocalAddr();}

从JSP:

在文档顶部声明以下内容:

<c:set var="baseURL" value="${pageContext.request.localName}"/> //or ".localAddr"

然后,要使用它,请引用变量

<a href="http://${baseURL}">Go Home</a>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5122921.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存