일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- RDS
- Cookie
- node.js
- Spring
- websocket
- 웹게임
- phaser
- 비트코인
- autowired
- model1
- 웹소켓
- express
- EC2
- 배포
- Servlet
- JavaScript
- AWS
- 블록체인
- SQL
- HTML
- jQuery
- docker
- 알고리즘
- tiles.xml
- PL/SQL
- Ajax
- JSP
- CSS
- 암호화
- 도커
- Today
- Total
記錄
JSP) html과 jsp의 경로설정 차이 본문
jsp와 html의 경로 설정은 차이가 있으며 혼동되기 쉽다
[ jsp 파일 ]
<h3>GET 방식 요청</h3>
<a href="<%= request.getContextPath()%>/Login.do?id=hong">로그인</a>
<hr>
<h3>POST 방식 요청</h3>
<form action="<%=request.getContextPath()%>/Login.do" method="post">
<input type="text" name="id">
<input type="submit" value="로그인">
</form>
[ html ] (원칙적으로 서버요청 경로에 '/' 붙이지 않는다)
1. <a href="/MemoList">목록보기</a> >>>> localhost:8090/MemoList
2. <a href="MemoList">목록보기</a> >>>> localhost:8090/WebServlet_3/MemoList
3. <a href="/member/MemoList">목록보기</a> >>>> localhost:8090/member/MemoList
4. <a href="member/MemoList">목록보기</a> >>>> localhost:8090/WebServlet_3/member/MemoList
5.
<form name="f" action="/MemoServlet" method="get"> localhost:8090/MemoServlet
<form name="f" action="MemoServlet" method="get"> localhost:8090/WebServlet_3/MemoServlet
'Web > JSP' 카테고리의 다른 글
JSP) 커넥션 풀 (0) | 2018.04.23 |
---|---|
JSP) JSTL & EL (0) | 2018.03.26 |
JSP) 각종 객체의 생성 갯수와 범위 (0) | 2018.03.21 |
JSP) 에러페이지 (0) | 2018.03.21 |
JSP) URL, URI, URN (0) | 2018.03.20 |