「java」getRequestURIでリクエストURIを取得する

サンプルコード
String strUri = request.getRequestURI();
String strUrl = request.getRequestURL().toString();
String strPath = request.getContextPath();

PrintWriter cft = response.getWriter();
cft.println(“strUrl:"+requestUrl);
cft.println(“<br>");
cft.println(“strUri:"+requestUri);
cft.println(“<br>");
cft.println(“strPath:"+contextPath);

結果
strUrl:http://172.17.2.200:8080/cmst/update/yamada
strUri:/cmst/update/yamada
strPath:/cmst

Software

Posted by arkgame