Skip to content

Commit a5515a9

Browse files
author
javaage
committed
mybatis
1 parent 5581e43 commit a5515a9

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
3+
"http://mybatis.org/dtd/mybatis-3-config.dtd">
4+
<configuration>
5+
<environments default="development">
6+
<environment id="development">
7+
<transactionManager type="JDBC" />
8+
<dataSource type="POOLED">
9+
<property name="driver" value="org.postgresql.Driver" />
10+
<property name="url" value="jdbc:postgresql://localhost:5432/la" />
11+
<property name="username" value="postgres" />
12+
<property name="password" value="19786028" />
13+
</dataSource>
14+
</environment>
15+
</environments>
16+
17+
<mappers>
18+
<mapper resource="com/cisco/la/dao/LaUserMapper.xml" />
19+
20+
</mappers>
21+
</configuration>
22+
23+
24+
25+
26+
27+

0 commit comments

Comments
 (0)