Spring

mybatis-config.xml

Birthmark 2019. 2. 24. 17:31
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