RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
怎么在SpringBoot中使用MyBatis框架实现查询操作-创新互联

这篇文章将为大家详细讲解有关怎么在Spring Boot中使用MyBatis框架实现查询操作,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

成都创新互联IDC提供业务:温江服务器租用,成都服务器租用,温江服务器租用,重庆服务器租用等四川省内主机托管与主机租用业务;数据中心含:双线机房,BGP机房,电信机房,移动机房,联通机房。

一.在你建立的工程下创建 Module 选择Spring initializr创建。

怎么在Spring Boot中使用MyBatis框架实现查询操作

二.在Type处选择: Maven Project(项目的构建工具)

怎么在Spring Boot中使用MyBatis框架实现查询操作

三.创建依赖时勾上web,mybatis,mysql(这个看你个人需要吧,可以自主选择)

怎么在Spring Boot中使用MyBatis框架实现查询操作

怎么在Spring Boot中使用MyBatis框架实现查询操作

建立好的项目结构如下:

怎么在Spring Boot中使用MyBatis框架实现查询操作

注意:application.properties和application.yml是同一个东西,均为项目的核心配置文件

内容如下:

#连接数据库
spring.datasource.url=jdbc:mysql://localhost:3306/smbms
spring.datasource.username=root
spring.datasource.password=1234
spring.datasource.driverClassName=com.mysql.jdbc.Driver
#引入mybatis的配置文件
mybatis:
  mybatis.mapper-locations=classpath:mapper/*.xml
  mybatis.type-aliases-package=com.example.sprboot.pojo

相应的pom.xml文件



  4.0.0

  com.example
  springboot
  0.0.1-SNAPSHOT
  jar

  springboot
  Demo project for Spring Boot

  
    org.springframework.boot
    spring-boot-starter-parent
    2.0.5.RELEASE
     
  
  
    UTF-8
    UTF-8
    1.8
  
  
    
    
      org.springframework.boot
      spring-boot-starter-web
    
    
    
      org.springframework.boot
      spring-boot-starter-test
      test
    
    
    
      org.mybatis.spring.boot
      mybatis-spring-boot-starter
      1.3.0
    
    
    
      mysql
      mysql-connector-java
    
    
    
      com.alibaba
      fastjson
      1.2.49
    
    
    
      org.springframework.boot
      spring-boot-starter-thymeleaf
    
  
  
    
      
        org.springframework.boot
        spring-boot-maven-plugin
      
    
  

相应的接口UserMapper如下:

@Repository
public interface UserMapper {
  List getList();
}

service如下:

public interface UserService {
  List getList();
}

impl如下:

@Service
public class UserServiceImpl implements UserService {
  @Resource
  private UserMapper userMapper;
  @Override
  public List getList() {
    return userMapper.getList();
  }
}

在resources中建一个文件夹mapper里面放mapper.xml文件,代码如下:


  select * from smbms_user

在templates文件夹中建html文件(注意:Spring Boot中不能跳转到.jsp文件,所以只能用html)

核心代码如下:


  
  
  
  
  
  
  
  
  
    
    
    
    
    
    
    
    
  
工号用户名姓名性别生日电话地址创建时间

此处有一个th标签,需要引入一个

并在pom.xml中引入对应的jar包(html中不能使用jstl表达式)

大家可以扩展一下thymeleaf的知识

控制器代码如下:

@Controller
public class UserController {
  @Resource
  private UserService userService;
@RequestMapping("/")
  public String getStuinforList(HttpServletRequest request, Model model){
    List list=userService.getList();
    model.addAttribute("users",list);
    System.out.println(list);
    return "/index.html";
  }
}

关于怎么在Spring Boot中使用MyBatis框架实现查询操作就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


网页名称:怎么在SpringBoot中使用MyBatis框架实现查询操作-创新互联
本文来源:http://sczitong.cn/article/gioje.html