不需要配置如何信息
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);
}
}
spring:
redis:
host: 127.0.0.1 #redis的主机地址
port: 6379
[](()三、SpringBoot整合MyBatis
通过上述的工程搭建自动添加好了依赖
CREATE DATABASE /!32312 IF NOT EXISTS/springboot
/*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */;
USE springboot
;
/*Table structure for table t_user
*/
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;
/*Data for the table t_user
*/
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 + ‘’’ +
‘}’;
}
}
#datasource
spring:
datasource:
url: jdbc:mysql:///springboot
username: root
password: root
driver-class-name: com.mysql.jdbc.Driver
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();
}
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);
}
}
运行测试类
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();
}
![在这里插入图片描述](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
#datasource
spring:
datasource:
url: jdbc:mysql:///springboot
username: root
password: root
driver-class-name: com.mysql.jdbc.Driver
mybatis:
mapper-locations: classpath:mapper/*Mapper.xml #mapper映射文件的路径
type-aliases-package: cn.tbluebox.springbootmybatis.domain
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;