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)
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>
<%@ 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>
<%
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
}
%>
<title>login</title>
</head>
<body>
<h3>LOGIN</h3>
</body>
<title>signin</title>
</head>
<body>
<h3>SIGNIN</h3>
</body>
<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
Spring - Java
Django - Python for web site
TensorFlow for AI
Laravel - PHP
Racts.js - Javascript
Vue.js - Javascript
Angular - Javascript
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))
Without form tag, let the web page works.
Short and streamlined codes like Jquery.
<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>
<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(){
}
})
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();
}
}
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.