Mybatis中的一些配置,直接拿来就可以用
Posted 三毛是学IT掉发的
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis中的一些配置,直接拿来就可以用相关的知识,希望对你有一定的参考价值。
MyBatis 中的config.xml文件 核心配置文件
直接拿来就用
<property name="driver" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2B8"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
注意使用maven做项目,要在build中配置resources,来防止我们资源导出失败的问题
<!--在build中配置resources,来防止我们资源导出失败的问题-->
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</build>
以上是关于Mybatis中的一些配置,直接拿来就可以用的主要内容,如果未能解决你的问题,请参考以下文章
功能全面的mybatis-plus代码生成器,适合拿来主义!速度手冲!!!