본문 바로가기

개발/BACK

[SpringFramework] 스프링프레임워크 회원가입 기능 구현 예제_1

728x90

Spring에서 회원가입 예제 2편

https://hdhdeveloper.tistory.com/17

 

[SpringFramework] db 연동 후 회원가입 로직 작성하기_2

지난 번, mysql 연동까지 진행했고 이 페이지에서는 회원가입 폼 작성 및 db 연동 작업을 진행하겠다. 먼저 프레임워크에서 프로젝트를 생성하게 되면, 기본적으로 homeController.class와 home.jsp 파일이

hdhdeveloper.tistory.com

Spring에서 회원가입 예제 3편

https://hdhdeveloper.tistory.com/18

 

[SpringFramework] db 연동 후 회원가입 로직 작성하기_3

이전 포스팅에서 ajax를 호출하는 것까지 작성을 했다. ajax의 url 에 적힌 경로를 호출하게 되는데 어제 작성한 script 페이지를 다시 보겠다 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24..

hdhdeveloper.tistory.com

 


스프링 프레임워크 환경에서 회원가입 예제를 만들어보겠다

 

 

 

 


 

 

hdhdeveloper.tistory.com/15

 

[Spring Framework ] jdk 1.8 변경 방법 및 Spring Framework 버전 변경 방법 (+추가 , MVNREPOSITORY 사용방법)

STS 에서 SpringFramework 버젼 변경 및 JDK 변경방법에 대해 알려볼까 한다. 추가로 신규 메이븐을 추가해서 사용하고 싶으신 분들을 위해 MVNREPOSITORY 사용법을 안내할 예정이다. 먼저 프로젝트를 하나

hdhdeveloper.tistory.com

 

SpringFramework 설정 방법 포스팅


프로젝트는 생성했다치고 먼저 pom.xml에 mysql 및 mybatis 등 필요한 라이브러리들을 다운받을 것이다.

pom.xml을 열고 해당 메이븐을 입력하자.

 

 

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
        <!-- Test -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.7</version>
            <scope>test</scope>
        </dependency>  
        
        <!-- MySQL -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.39</version>
        </dependency>
 
        <!-- MyBatis 3.4.1 -->
        <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.4.6</version>
        </dependency>
 
 
        <!-- MyBatis-Spring -->
        <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>1.3.2</version>
        </dependency>
 
        <!-- Spring-jdbc -->
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>${org.springframework-version}</version>
        </dependency>
 
        <!-- Spring-test -->
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>${org.springframework-version}</version>
        </dependency>
cs

해당 소스를 pom.xml에 붙여 넣으면 메이븐이 자동으로 업데이트 될 것이다.

이 후, root-context.xml 페이지를 열어서 데이터베이스 연동 관련 설정을 해보자

root-context.xml 의 namespaces

root-context.xml의 Namespaces 화면이다. 화면에서 체크한 것 처럼 동일하게 추가를 해주자

그러면 아래와 같이 beans 태그에 xmlns 속성이 자동으로 추가된 것을 볼 수 있다.

 

해당 xmls 속성 내용 중 websocket이 있는데, 해당 beans는 현재 사용할 것이 아니기 때문에 없어도 상관이 없다.

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
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xmlns:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:websocket="http://www.springframework.org/schema/websocket"
    xsi:schemaLocation="http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.1.xsd
        http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd
        http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring-1.2.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd">
    
    <!-- Root Context: defines shared resources visible to all other web components -->
    <mybatis-spring:scan base-package="main.com.basic.dao"/> 
        <!-- MySQL dataSource -->
    <bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <!-- 주의사항 -->
        <!-- MySQL Connector/J 8.0 부터는 'com.mysql.jdbc.Driver' 아니라 'com.mysql.cj.jdbc.Driver' 으로 사용합니다. -->
        <!-- https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-usagenotes-spring-config.html  -->
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url"
            value="jdbc:mysql://127.0.0.1:3306/스키마명?useSSL=false&amp;serverTimezone=UTC">
        </property>
        <property name="username" value="root"></property>
        <property name="password" value="비밀번호"></property>
    </bean>        
    
    
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="mapperLocations" value="classpath*:/mappers/*.xml" />        
    </bean>
</beans>
 
cs

위의 root-context 내용을 동일하게 작성하면 된다.

 

제일 하단의 bean 태그의 두번 째 프로퍼티인 mapperLocations는 mapper.xml

즉 데이터베이스 조회/수정/삭제 쿼리가 작성되어있는 xml 파일을 찾는다.

 

해당 mappers의 경로는 아래 화면과 같다.

해당 Mapper는 내가 먼저 구현해놓았기 때문에 있는 것이고,

만약 이글을 따라 한다면 해당 폴더까지만 생성해둔 후, 절차대로 진행하면 될 듯 하다.

 

여기까지 진행하셨다면 데이터베이스 연동까지는 마친 상태이다.

 

데이터베이스 연동상태를 테스트 해보고 싶다면 아까 pom.xml에 명시한 JUnit이 있는데,

테스트 클래스를 생성하여  해당 클래스에서 오른쪽 마우스 클릭 -> Run As -> JUnit Test 를 진행해보면 될 듯하다.

 

다음 장에서는 본격적으로 회원가입 로직을 진행하려고 한다.

728x90