-
Notifications
You must be signed in to change notification settings - Fork 217
/
mybatis-config.xml
33 lines (29 loc) · 1.19 KB
/
mybatis-config.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
<?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>
<settings>
<setting name="jdbcTypeForNull" value="NULL"/>
</settings>
<plugins>
<plugin interceptor="com.github.miemiedev.mybatis.paginator.OffsetLimitInterceptor">
<property name="dialectClass" value="com.github.miemiedev.mybatis.paginator.dialect.OracleDialect"/>
</plugin>
</plugins>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED" >
<property name="driver" value="oracle.jdbc.OracleDriver"/>
<property name="url" value="jdbc:oracle:thin:@10.29.20.209:1521:orcl"/>
<property name="username" value="financial_product"/>
<property name="password" value="fpadmin"/>
<property name="poolMaximumActiveConnections" value="50"/>
</dataSource>
</environment>
</environments>
<mappers>
<mapper resource="City.mbts.xml"/>
</mappers>
</configuration>