Nov 12 :

KimΒ·2020λ…„ 11μ›” 12일
0

JSP

λͺ©λ‘ 보기
3/5

πŸ“Œ built-in objects

  • request **
  • response **
  • out **
  • page (pageContext) *
  • config
  • session *
  • application *
  • exception

pageContext: can be used in ONLY ONE jsp file (like local variable in Java)
βŠ‚ request : at least two jsp files receiving and sending each other(with submit)
βŠ‚ session : can be used in jsp files which already declared session
βŠ‚ application : can be shared in the whole projects (like field in Java)

  • β›„ test code

    Test the scope of the four objects(pageContext, request, session, application)

πŸ‘‰ firstPage.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
	pageContext.setAttribute("name", "page man");  //insert 'page man' to "name"
	request.setAttribute("name","request man"); //same here
	session.setAttribute("name", "session man"); //same
	application.setAttribute("name", "application man"); //same
	// four of them have different name and attribute is simillar to variable (like java)
	
	System.out.println("firstPage.jsp");
	System.out.println("ν•˜λ‚˜μ˜ νŽ˜μ΄μ§€ 속성 "+pageContext.getAttribute("name"));
	System.out.println("ν•˜λ‚˜μ˜ request 속성 "+request.getAttribute("name"));
	System.out.println("ν•˜λ‚˜μ˜ session 속성 "+session.getAttribute("name"));
	System.out.println("ν•˜λ‚˜μ˜ application 속성 "+application.getAttribute("name"));
	
	request.getRequestDispatcher("secondPage.jsp").forward(request,response);
	//rd μ•ˆμ“°κ³  ν•œμ€„λ‘œ ν‘œν˜„
	
	//==RequestDispatcher rd=request.getRequestDispatcher("successful.jsp?userid="+userid);
	//rd.forward(request,response);	  post
%>
</body>
</html>

πŸ‘‰ secondPage.jsp

<body>
ν•˜λ‚˜μ˜ νŽ˜μ΄μ§€ 속성 : <%=pageContext.getAttribute("name") %><br>
ν•˜λ‚˜μ˜ request 속성 : <%=request.getAttribute("name") %><br>
ν•˜λ‚˜μ˜ session 속성 : <%=session.getAttribute("name") %><br>
ν•˜λ‚˜μ˜ application 속성 : <%=application.getAttribute("name") %><br>
</body>

πŸ‘‰ thirdPage.jsp

<body>
ν•˜λ‚˜μ˜ νŽ˜μ΄μ§€ 속성 : <%=pageContext.getAttribute("name") %><br>
ν•˜λ‚˜μ˜ request 속성 : <%=request.getAttribute("name") %><br>
ν•˜λ‚˜μ˜ session 속성 : <%=session.getAttribute("name") %><br>
ν•˜λ‚˜μ˜ application 속성 : <%=application.getAttribute("name") %><br>
</body>




πŸ“Œ Sign in and login (all jsp files) with REQUEST and RESPONSE

  • β›„ first pageahfm
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>main page</title>
</head>
<body>
	<form method='post' action='doMove.jsp'>
<table>
<table>
	<tr><td colspan=2><input type=text name=login size=12>
		<input type=submit value=go>
		</td>
	</tr>
</table>
</form>
</body>
</html>
  • Enter specific words and clicks,
<%
String login=request.getParameter("login");
String signin=request.getParameter("login");

if(login.equals("login")){
	RequestDispatcher rd=request.getRequestDispatcher("login.jsp?login="+login);
	rd.forward(request,response);
}else if (signin.equals("signin")) {
	RequestDispatcher rd=request.getRequestDispatcher("signin.jsp?signin="+signin);
	rd.forward(request,response);	  //post
}
%>
  • login page
<title>login</title>
</head>
<body>
	<h3>LOGIN</h3>
</body>
  • sign in page
<title>signin</title>
</head>
<body>
	<h3>SIGNIN</h3>
</body>
  • result

πŸ“Œ Attribute

  • setAttribute : set the attribute(variable)
  • getAttribute : get the value of the attribute
  • removeAttribute : eliminate the attribute

πŸ“Œ JSP action tag

  • <jsp:foawrd> & <jsp:param>
<jsp:forward page="secondPage.jsp">
	<jsp:param name="name" value="request man">
	</jsp:param>
</jsp:forward>

is exactly same as

System.out.println("ν•˜λ‚˜μ˜ request 속성 "+request.getAttribute("name"));
request.getRequestDispatcher("secondPage.jsp").forward(request,response);

<jsp:include> : jsp:include page="file name.jsp"
<jsp:useBean> : is replaced by Spirng
<jsp:setProperty> : is replaced by Spring
<jsp:getProperty> : is replaced by Spring

  • cookie : (λ‚˜μ˜) μ›ΉλΈŒλΌμš°μ €κ°€ λ‚΄ μ»΄ν“¨ν„°μ˜ ν•˜λ“œλ””μŠ€ν¬μ— νŒŒμΌν˜•νƒœλ‘œ μ €μž₯ν•œ λ‚΄ κ°œμΈμ •λ³΄
    Personal inforamtion which my web browser saves in hard disk as a file form.
    Data remains after log out.
    example_
    Youtube search key words >> Javascript >> Save in my hard disk with file format

  • session : λ‚΄κ°€ μ ‘μ†ν•œ μ›Ήμ„œλ²„κ°€ 자기 λ©”λͺ¨λ¦¬ 내에 λ³΄κ΄€ν•˜λŠ” λ‚΄ κ°œμΈμ •λ³΄
    Personal information which web server(me access) saves in its own meomory.
    Better security performance than cookie.
    log out >> all the data deletes

Backend frameworks

Spring - Java
Django - Python for web site
TensorFlow for AI
Laravel - PHP

Racts.js - Javascript
Vue.js - Javascript
Angular - Javascript

Framework

Sign in, Login
Manage security
Manage template
Manage DB connection
μ›ΉνŽ˜μ΄μ§€κ°„ 이동
등을 λ‹€ 묢어놓은 것

example : Login login = new Login(); >> κΈ°λ³Έ 둜그인창 생성

(1 page, 1 jsp file >> So you have to make each jsp file for one page(screen))

Ajax

Without form tag, let the web page works.
Short and streamlined codes like Jquery.

  • 🍭 With form tag (no Ajax) .jsp
<form method="get" action="MethodServlet">
	<table>
   <tr><td align=right>ID</td><td><input type=text name=userid size=12></td>
   <tr><td align=right>PW</td><td><input type=text name=passwd size=12></td></tr>
   </table>
  <input type=submit value=submit>
   </form>
  • πŸͺ With Ajax .jsp
<table>
   <tr><td align=right>ID</td><td><input type=text name=userid size=12></td>
   <tr><td align=right>PW</td><td><input type=text name=passwd size=12></td>
   </tr></table>
   <input type="button" id=btnLogin value=login>
	</body>
	
	<script src="http://code.jquery.com/jquery-3.5.0.js"></script>
	<script>
	$(document)
	.on('click','#btnLogin',function(){
		$.ajax({
			url:'MethodServlet',
			method:'get',
			data:'userid='+$('input[name=userid]').val()
			+'&passwd='+$('input[name=passwd]').val(),
			dataType:'text',
			beforeSend:function(){},
			success:function(txt){
				alert(txt);
			},
			comelete:function(){
				
			}
		})
  • same code for both of them(form and ajax)
package web02;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class MethodServlet
 */
@WebServlet("/MethodServlet")
public class MethodServlet extends HttpServlet {
	private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public MethodServlet() {
        super();
        // TODO Auto-generated constructor stub
    }
	/**
	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		request.setCharacterEncoding("utf-8");
		response.setContentType("text/html; charset=utf-8");
		PrintWriter out=response.getWriter();
		
		String userid=request.getParameter("userid");
		String passwd=request.getParameter("passwd");
		out.println("userid : "+userid+", password : "+passwd);
		out.close();
	}
}
  • result



πŸ“Œ Compare form tag and ajax

1️⃣ Servlet and Method
🍭 form tag : <form method="get" action="MethodServlet">
πŸͺ ajax : url : 'MethodServlet', method : 'get'

2️⃣ Print data

🍭 form tag
Get data in .jsp and send it to .java. Then print in the java.

πŸͺ ajax
data:'userid='+$('input[name=userid]').val() +'&passwd='+$('input[name=passwd]').val()
dataType:'text'

Get data in .jsp and send it to .java. Then print in the java.

3️⃣ Submit(form) and Button(ajax)
🍭
When submit clicks, move to another file(jsp or java). And in the file(second), the next process works.
πŸͺ
When button clicks, the next process works on the $(document)

4️⃣ Conclusion
Using ajax, web server calls a specific survlet in $(document). Like class instance of Java.

0개의 λŒ“κΈ€

κ΄€λ ¨ μ±„μš© 정보