You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
<?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="mapUnderscoreToCamelCase" value="true"/>
|
|
</settings>
|
|
<environments default="development">
|
|
<environment id="development">
|
|
<transactionManager type="JDBC"/>
|
|
<dataSource type="POOLED">
|
|
<property name="driver" value="com.mysql.jdbc.Driver"/>
|
|
<property name="url" value="jdbc:mysql://localhost:3306/se_work?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC"/>
|
|
<property name="username" value="root"/>
|
|
<property name="password" value="sxy006122"/>
|
|
</dataSource>
|
|
</environment>
|
|
</environments>
|
|
<mappers>
|
|
<mapper resource="UserMapper.xml"/>
|
|
</mappers>
|
|
</configuration> |