javaweb中的一些路徑

zhumeilu發表於2017-12-14

一個專案打包之後名為app,放入到tomcat的webapps目錄下,

請求:http://localhost:8080/app/hello 方法:request.getContextPath() 值:/app 方法:request.getRequestURI() 值:/app/hello 方法:request.getRequestURL() 值:http://localhost:8091/app/hello 方法:request.getServletPath() 值:/hello

將該專案打包後的名稱改為ROOT, 請求:http://localhost:8080/hello 方法:request.getContextPath() 值:(空字串) 方法:request.getRequestURI() 值:/hello 方法:request.getRequestURL() 值:http://localhost:8091/hello 方法:request.getServletPath() 值:/hello

相關文章