Spring Boot系列教程十:Spring boot集成MyBatis

一.创建项目

        项目名称为 “springboot_mybatis_demo”,创建过程中勾选 “Web”,“MyBatis”,“MySQL”,第一次创建Maven需要下载依赖包(耐心等待)
       

二.实现

2.1创建User类

package com.woniu.bean;


public class User {
	private long id;
	private String name;
	private int age;
	public long getId() {
		return id;
	}
	public void setId(long id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	@Override
	public String toString() {
		return "User [id=" + id + ", name=" + name + ", age=" + age + "]";
	}
	
	
}
 

2.2创建UserMapper接口

      创建接口UserMapper,并添加@Mapper注解
package com.woniu.mapper;

import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;

import com.woniu.bean.User;

@Mapper
public interface UserMaper {
	
	@Select("select * from user where age = #{age}")
	User Select(int age);
}
 

2.3创建controller

package com.woniu.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.woniu.bean.User;
import com.woniu.mapper.UserMaper;

@RestController
@RequestMapping("/web")
public class WebController {
	@Autowired
	private UserMaper mapper;
	
	
	@RequestMapping("/index",method=RequestMethod.GET)
	public User selectAge(@RequestParam("age") int age){
		
		return mapper.Select(age);
	}
}

2.4设置application.properties

# mysql
spring.datasource.url=jdbc:mysql://localhost/spring_boot_demo?useUnicode=true&characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
 

2.5MySQL中创建对应数据库和表

      数据库名:"spring_boot_demo",表名:"user"

 

三.测试

运行项目测试结果如下:

 
springboot_mybatis_demo资源地址: 点击打开链接
 
spring  boot讨论群:611262656,一键加群: 点击加群
 

 

评论 18
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码农code之路

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值