16 lines
498 B
XML
16 lines
498 B
XML
<?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>
|
|
<!-- 类型处理器配置 -->
|
|
<typeHandlers>
|
|
<typeHandler javaType="java.util.Date" jdbcType="VARCHAR" handler="com.ruoyi.os.mapper.handler.DateToStringTypeHandler"/>
|
|
</typeHandlers>
|
|
|
|
<settings>
|
|
<setting name="logImpl" value="STDOUT_LOGGING"/>
|
|
</settings>
|
|
</configuration>
|