메뉴 건너뛰기

2021.03.28 10:04

jsp - 회원가입

조회 수 179 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

1.회원가입 페이지

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    <script>
    $(document).ready(function() {
 
        
        //회원가입
        $("#btnJoin").click(function (){
            
            
            location.href="/web02/member/join.jsp";
            
            
        });
 
 
<input type="button" value="회원가입" id="btnJoin">
 
 
cs

 

 

 

2.회원가입 페이지

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE  >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script src="http://code.jquery.com/jquery-3.1.0.js">
    
</script>
 
<script>
    $(document).ready(function() {
 
        //버튼클릭 이벤트
        $("#btnJoin").click(function() {
        
            //폼데이터를 서버에 제출
            document.form1.submit();
 
        });
 
    });
</script>
 
</head>
<body>
 
 
    <h2>회원가입</h2>
 
 
    <form name="form1" method="post" action="/web02/member_servlet/join.do">
 
        <table border="1" width="700px">
            <tr>
                <td>이름</td>
                <td><input type="text" name="name" id="name"></td>
            </tr>
 
 
            <tr>
                <td>아이디</td>
                <td><input type="text" name="userid" id="userid"></td>
            </tr>
 
 
            <tr>
                <td>비밀번호</td>
                <td><input type="password" name="passwd" id="passwd"></td>
            </tr>
 
 
            <tr>
                <td>비밀번호확인</td>
                <td><input type="password" name="passwd2" id="passwd2"></td>
            </tr>
 
 
            <tr>
                <td>이메일</td>
                <td><input type="email" name="email" id="email"></td>
            </tr>
 
 
            <tr>
                <td>폰번호</td>
                <td><input type="text" name="hp" id="hp"></td>
            </tr>
 
 
            <tr>
                <td>우편번호</td>
                <td><input type="text" name="zipcode" id="zipcode"></td>
            </tr>
 
 
            <tr>
                <td>주소</td>
                <td><input type="text" name="address1" id="address1"></td>
            </tr>
 
 
            <tr>
                <td>주소상세</td>
                <td><input type="text" name="address2" id="address2"></td>
            </tr>
 
 
            <tr>
 
                <td  align="center" colspan="2">
                <input type="button" value="회원가입" id="btnJoin"> 
                <input type="reset" value="취소">
 
                </td>
            </tr>
 
        </table>
    </form>
 
</body>
</html>
cs

 

 

3. 컨트롤

 



 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
} else if (url.indexOf("join.do"!= -1) {
 
            String userid = request.getParameter("userid");
            String passwd = request.getParameter("passwd");
            String name = request.getParameter("name");
            String email = request.getParameter("email");
            String hp = request.getParameter("hp");
            String zipcode = request.getParameter("zipcode");
            String address1 = request.getParameter("address1");
            String address2 = request.getParameter("address2");
 
            // form 태그의 name속성
            MemberDTO dto = new MemberDTO(userid, passwd, name, email, hp, zipcode, address1, address2);
 
            // insert요청
            int result=dao.memberInsert(dto);
 
            
            // if 문
            
            String message= result=="fail""success";
 
            
            
            // 페이지 이동
 
            String page = path + "/member/main.jsp?message="+message;
            response.sendRedirect(page);
 
        }
 
    }
cs

 

 

4. main 페이지

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE  >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
 
    <%
        String message = request.getParameter("message");
 
        String str = "";
 
        //자바에서는 이퀄스 사용
        if (message.equals("success")) {
 
            str = "회원가입이 완료";
 
        } else {
 
            str = "회원가입 실패 ";
 
        }
    %>
 
    <h2><%=str%></h2>
 
</body>
</html>
cs



출처: https://abc1211.tistory.com/92?category=922165 [길위의 개발자]


  1. doc 문서 생성 및 패키지 압축 방법

    Date2021.03.25 Views94
    Read More
  2. 패키지 생성 bat문

    Date2021.03.25 Views117
    Read More
  3. JSP - JDBC&데이터 처리 순서&DB CONN 따로 분리

    Date2021.03.28 Views117
    Read More
  4. jsp 소스 맨 위에 붙이는 기본 코드들

    Date2021.03.25 Views118
    Read More
  5. JSP - 페이지 화면이동 방식

    Date2021.03.27 Views118
    Read More
  6. JSP - 메모 상세 & EL

    Date2021.03.28 Views120
    Read More
  7. JSP - MVC 패턴 & 도서 목록 컨트롤러에서 해당 URL 받아서 처리하기

    Date2021.03.27 Views122
    Read More
  8. JSP - filter 필터 &한글처리

    Date2021.03.28 Views125
    Read More
  9. jsp mybatis sample file and spring mvc

    Date2021.03.28 Views127
    Read More
  10. JSP - 환경설정 및 기본개념

    Date2021.03.27 Views132
    Read More
  11. JSP - MYSQL JSP insert 폼에서 servlet으로 값넘기기

    Date2021.03.27 Views137
    Read More
  12. jsp header의 사용

    Date2021.03.31 Views141
    Read More
  13. jsp에서 멤버변수의 사용

    Date2021.03.25 Views142
    Read More
  14. 패키지 컴파일 방법

    Date2021.03.25 Views147
    Read More
  15. JSP - 한줄메모 삽입 & AJAX

    Date2021.03.28 Views150
    Read More
  16. JSP - 수정 삭제

    Date2021.03.28 Views150
    Read More
  17. JSP - 한줄메모 목록 리스트 AJAX

    Date2021.03.28 Views151
    Read More
  18. jsp - 각종 체크 &우편번호

    Date2021.03.28 Views154
    Read More
  19. jsp - 회원가입

    Date2021.03.28 Views179
    Read More
  20. JSP - 태그문자&공백문자&줄바꿈 문자 처리

    Date2021.03.28 Views186
    Read More
Board Pagination Prev 1 2 3 4 Next
/ 4

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved