TestPersonELCustomTag – EL & custom tag & custom EL function
TestPersonELCustomTag
lecture9
lecture9
TestJSTL
JSP 모델 1 TestJSTL-Model1
JSP 모델 2 TestJSTL-Model2
<%@ taglib prefix=”c” uri=”http://java.sun.com/jsp/jstl/core” %>
<%@ taglib prefix=”fn” uri=”http://java.sun.com/jsp/jstl/functions” %>
<%@ taglib prefix =”fmt” uri=”http://java.sun.com/jsp/jstl/fmt” %>
<%@ taglib prefix = “x” uri=”http://java.sun.com/jsp/jstl/xml” %>
lecture8
lecture8 JSTL
aj-lecture8
Midterm Project Presentation
문제해결을 위한 자바활용 (9주차) 프로젝트 구현발표 (5/20=>5/22)
2020/05/022 14:00-16:00 Zoom 회의 참가
Servlet forward vs redirect
Servlet 웹페이지 이동방식 forward vs redirect
https://jhmocu.tistory.com/121?category=697438
// forward URL 주소 유지 request/response 객체 유지
RequestDispatcher rd = request.getRequestDispatcher("listView.jsp");
rd.forward(request, response);
// redirect URL 주소 바뀜 request/response 객체 소멸
action.execute(request, response);
response.sendRedirect("index.jsp");
Servlet Get vs Post
Servlet Get, Post 방식
https://jhmocu.tistory.com/120
Get과 Post 방식의 차이, 언제 사용하는지?
https://blog.outsider.ne.kr/312
Lab6
Person Model 1 vs Model 2
JSP 모델 1, 모델 2
https://zetawiki.com/wiki/JSP_%EB%AA%A8%EB%8D%B8_1,_%EB%AA%A8%EB%8D%B8_2_%EC%95%84%ED%82%A4%ED%85%8D%EC%B2%98
JSP 모델 1 PersonJSP
JSP 모델 2 PersonJSP2
lecture7
lecture7