Cookie

Bootstrap 4 Forms

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/8e99d4b5-0dc6-4834-b79c-1339354e0f6a/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/aa2e17bd-d11b-4fbe-9442-0ce0d9378674/Untitled.png

loginForm.jsp

여기서 넘어간 데이터가 login (LoginAction) 으로 넘어가는건 알지

<form action="${cp}/user?cmd=login" method="post">
		<!-- 얘만 예외로 post! 나머지 셀렉트는 다 get -->
		<div class="form-group">
			<input type="text" class="form-control" placeholder="Enter username" name="username" **value="${cookie}"** required="required" />
		</div>
		<div class="form-group">
			<input type="password" class="form-control" placeholder="Enter password" name="password" required="required" />
		</div>
		<div class="form-group form-check">
			<label class="form-check-label"> <input class="form-check-input" type="checkbox" name="rememberMe"> Remember me
			</label>
		</div>
		<button type="submit" class="btn btn-primary">로그인</button>
	</form>

로그인 화면에 왔을 때,

아이디에 내 아이디가 뜨게(?) 하려면 가장 좋은 방법은

쿠키에 저장하는 것 (클라이언트 브라우저)

클라이언트 브라우저가 들고 있다가 쿠키값이 있으면

아이디에 뜨ㅣ워주고, 없으면 말면 됨

but 쿠키 저장의 주체는 서버

how to 쿠키 저장