Spring 기초 / 회원 등록 폼 완성 시키기
MemberController에서 GetMapping으로 이름 입력하고 등록하는 폼 return
templates\createMemberForm.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div class="container">
<form action="/members/new" method="post">
<div class="form-group">
<label for="name">이름</label>
<input type="text" id="name" name="name" placeholder="이름을 입력하세요">
</div>
<button type="submit">등록</button>
</form>
</div>
</body>
</html>
Controller 패키지에 MemberForm Controller 만들어서 name getter setter 만들기
이 때, 아까 폼의 데이터는 포스트로 넘겨줌.
Get은 주로 조회할 때 쓰고, Post는 주로 폼에서 쓴다.
PostMapping으로 찐 Member Service에서 처리 해주기
빈칸에 권나영 넣고 등록하면
print도 잘 찍힘
Author And Source
이 문제에 관하여(Spring 기초 / 회원 등록 폼 완성 시키기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@i-zro/Spring-기초-회원-등록-폼-완성-시키기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)