在使用mybaits时需要创建mapper.xml文件。为了方便我们需要在idea中设置xml文件模板。
首先在setting->Editor->File and Code Templates中创建
模板中的内容如下:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="">
</mapper>
完成后我们在创建时就会看见刚才定义的mapper.xml文件: