This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<?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="comxyp.domain.Account" alias="account"></typeAlias>-->
<!-- <package name="comxyp.domain"></package>-->
</typeAliases>
<!--分页插件配置-->
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<!-- 支持Oracle,MySQL,SQLite,MariaDB,Hsqldb,PostgreSQL -->
<property name="helperDialect" value="mysql"/>
</plugin>
</plugins>
</configuration>