url 주소 가져오는 함수_jsp

2022. 2. 5. 17:09ksmart_jsp/06_jsp_java_mysql_model01

728x90
request.getContextPath() 함수

예)  http://localhost:8080/project/list.jsp

request.getRequestURI() 함수

예)  http://localhost:8080/project/list.jsp

request.getRequestURL() 함수

예) http://localhost:8080/project/list.jsp

request.ServletPath() 함수

예) http://localhost:8080/project/list.jsp

request.getRealPath("") 함수

예) http://localhost:8080/projectname/list.jsp

->절대경로로 가져옴

[return]         c:\project\webapps\projectname\

728x90