JavaEE Spring MyBatis如何一步一步实现数据库查询功能

配置好一个SptingBoot项目配置好MyBatis

JavaEE Spring~MyBatis是什么? 它和Hibernate的区别有哪些?如何配置MyBatis?

SpringBoot配置文件application.properties简单介绍




确保MyBatis配置正确


手动实现一个xml文件

上面我是用的是一个自定义的接口 此时没有它对应的xml文件 此时我们需要

下图中column表示查询列, property表示返回类型中的属性


在Controller中进行测试

package listen.controller;

import listen.mapper.TestMapper;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RestController;

/**

* Created with IntelliJ IDEA.

* Description: If you don't work hard, you will a loser.

* User: Listen-Y.

* Date: 2020-08-21

* Time: 23:14

*/

@RestController

@RequestMapping(value = "user")

public class MyselfTest {

@Autowired

private TestMapper testMapper;

@RequestMapping(value = "test")

public Object test() {

return testMapper.query(1);

}

}

 

总结

到此这篇关于JavaEE Spring MyBatis如何一步一步实现数据库查询功能的文章就介绍到这了,更多相关JavaEE Spring MyBatis数据库查询内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

以上是 JavaEE Spring MyBatis如何一步一步实现数据库查询功能 的全部内容, 来源链接: utcz.com/z/311799.html

回到顶部