栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Java之Spring Boot入门到精通【IDEA版】SpringBoot整合其他框架

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Java之Spring Boot入门到精通【IDEA版】SpringBoot整合其他框架

[](()2、引入redis起步依赖
  • 通过上述的自动创建的工程redis的依赖已经自动添加好

[](()3、在测试方法当中默认连接本地的redis数据库

不需要配置如何信息

package cn.itbluebox.springbootredis;

import org.junit.jupiter.api.Test;

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

import org.springframework.boot.test.context.SpringBootTest;

import org.springframework.data.redis.core.BoundValueOperations;

import org.springframework.data.redis.core.RedisTemplate;

@SpringBootTest

class SpringbootRedisApplicationTests {

@Autowired

private RedisTemplate redisTemplate;

@Test

void testSet() {

//存入数据

redisTemplate.boundValueOps(“name”).set(“张三”);

}

@Test

void testGet() {

//获取数据

Object name = redisTemplate.boundValueOps(“name”).get();

System.out.println(name);

}

}

  • 启动redis

  • 运行测试类(测试方法testSet()存入数据)

  • 运行测试类(测试方法testGet()获取数据)

[](()4、配置redis相关属性

spring:

redis:

host: 127.0.0.1 #redis的主机地址

port: 6379

  • 运行测试

[](()三、SpringBoot整合MyBatis


[](()1、搭建SpringBoot工程

[](()2、引入mybatis起步依赖,添加mysq|驱动

通过上述的工程搭建自动添加好了依赖

[](()3、定义表和实体类
  • 创建数据库

CREATE DATABASE /!32312 IF NOT EXISTS/springboot ;

USE springboot;

DROp TABLE IF EXISTS t_user;

CREATE TABLE t_user (

id int(11) NOT NULL AUTO_INCREMENT,

username varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,

password varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,

PRIMARY KEY (id)

) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

insert into t_user(id,username,password) values (1,‘zhangsan’,‘123’),(2,‘lisi’,‘234’);

  • 创建实体类

package cn.tbluebox.springbootmybatis.domain;

public class User {

private int id;

private String username;

private String password;

public User() {

}

public User(int id, String username, String password) {

this.id = id;

this.username = username;

this.password = password;

}

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

public String getUsername() {

return username;

}

public void setUsername(String username) {

this.username = username;

}

public String getPassword() {

return password;

}

public void setPassword(String password) {

this.password = password;

}

@Override

public String toString() {

return “User{” +

“id=” + id +

“, username='” + username + ‘’’ +

“, password='” + password + ‘’’ +

‘}’;

}

}

[](()4、编写DataSource和MyBatis相关配置

#datasource

spring:

datasource:

url: jdbc:mysql:///springboot

username: root

password: root

driver-class-name: com.mysql.jdbc.Driver

[](()5、编写dao和mapper文件/纯注解开发

package cn.tbluebox.springbootmybatis.mapper;

import cn.tbluebox.springbootmybatis.domain.User;

import org.apache.ibatis.annotations.Mapper;

import org.apache.ibatis.annotations.Select;

import java.util.List;

@Mapper

@Repository

public interface UserMapper {

@Select(“select * from t_user”)

public List findAll();

}

[](()6、测试

package cn.tbluebox.springbootmybatis;

import cn.tbluebox.springbootmybatis.domain.User;

import cn.tbluebox.springbootmybatis.mapper.UserMapper;

import org.junit.jupiter.api.Test;

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

import org.springframework.boot.test.context.SpringBootTest;

import java.util.List;

@SpringBootTest

class SpringbootMybatisApplicationTests {

@Autowired

private UserMapper userMapper;

@Test

void findAllUser() {

List all = userMapper.findAll();

System.out.println(all);

}

}

运行测试类

[](()7、编写dao和mapper文件/XML开发 [](()(1)创建UserXmlMapper接口

package cn.tbluebox.springbootmybatis.mapper;

import cn.tbluebox.springbootmybatis.domain.User;

import org.apache.ibatis.annotations.Mapper;

import org.springframework.stereotype.Repository;

import java.util.List;

@Mapper

@Repository

public interface UserXmlMapper {

public List findAll();

}

[](()(2) 编写配置文件

![在这里插入图片描述](https://img-blog.csdnimg.cn/32c070ca8b0b42629c3e71ca467b566a.png?x-oss-process=image/watermark,type_ZHJvaWRzYW5zZmFsbGJhY2s,shadow_50,text_Q1NETiBA6JOd55uS5a2QaXRib 《一线大厂Java面试题解析+后端开发学习笔记+最新架构讲解视频+实战项目源码讲义》无偿开源 威信搜索公众号【编程进阶路】 HVlYm94,size_20,color_FFFFFF,t_70,g_se,x_16)

select * from t_user

[](()(3) 配置配置文件

#datasource

spring:

datasource:

url: jdbc:mysql:///springboot

username: root

password: root

driver-class-name: com.mysql.jdbc.Driver

mybatis

mybatis:

mapper-locations: classpath:mapper/*Mapper.xml #mapper映射文件的路径

type-aliases-package: cn.tbluebox.springbootmybatis.domain

config-location: #指定mybatis核心配置文件 [](()(4)完善测试类

package cn.tbluebox.springbootmybatis;

import cn.tbluebox.springbootmybatis.domain.User;

import cn.tbluebox.springbootmybatis.mapper.UserMapper;

import cn.tbluebox.springbootmybatis.mapper.UserXmlMapper;

import org.junit.jupiter.api.Test;

import org.junit.runner.RunWith;

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

import org.springframework.boot.test.context.SpringBootTest;

import org.springframework.test.context.junit4.SpringRunner;

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/852437.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号