본문 바로가기
Spring

mybatis-config.xml

by Birthmark 2019. 2. 24.
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <typeAliases>
        <typeAlias type="global.sesoc.test.vo.BookReview" alias="BookReview" />
    </typeAliases>
    <mappers>
        <mapper resource="mappers/ReviewMapper.xml" />
    </mappers>
</configuration>
 
cs

'Spring' 카테고리의 다른 글

book.jsp  (0) 2019.02.24
bookreview 테이블 생성 쿼리  (0) 2019.02.24
ReviewMapper.xml  (0) 2019.02.24
BookReviewMapper  (0) 2019.02.24
BookReviewDAO  (0) 2019.02.24

댓글