How to get correct current URL in JSP in Spring webapp

后端 未结 10 575
梦谈多话
梦谈多话 2021-02-03 18:53

I\'m trying to get a correct current URL in JSP in Spring webapp. I\'m trying to use the following fragment in the JSP file:

${pageContext.request.requestURL}
         


        
10条回答
  •  北海茫月
    2021-02-03 19:31

    *<% String myURI = request.getAttribute("javax.servlet.forward.request_uri").toString(); %>
                    <% String[] split = myURI.split("/"); %>
                    <% System.out.println("My url is-->"+ myURI
                            + "  My url splitter length --->"+split.length
                            +"last value"+split[4]);%>
    <%--                 --%>
                    
                    
                        
                        Add
                    
     - List item*
    

提交回复
热议问题