idea新建mybatis的xml文件
时间: 2023-04-24 17:00:10 浏览: 594
IDEA Maven Mybatis generator 自动生成代码(实例讲解)
1. 首先在项目的resources目录下创建一个新的文件夹,命名为mapper。
2. 在mapper文件夹下新建一个xml文件,命名为xxxMapper.xml(xxx为对应的实体类名)。
3. 在xml文件中编写对应的SQL语句,例如:
<select id="selectById" parameterType="int" resultType="com.example.entity.User">
select * from user where id = #{id}
</select>
4. 在对应的Mapper接口中添加对应的方法,例如:
User selectById(int id);
5. 在mybatis-config.xml文件中添加对应的mapper配置,例如:
<mappers>
<mapper resource="mapper/UserMapper.xml"/>
</mappers>
6. 在代码中调用对应的Mapper方法即可使用。
阅读全文