SpringBoot(3)、简单整合Redis

Pom.xml


    4.0.0

    com.ctw.springboot
    springboot-redis
    0.0.1-SNAPSHOT
    jar

    Spring Boot Blank Project (from https://github.com/making/spring-boot-blank)
    
    
        org.springframework.boot
        spring-boot-starter-parent
        1.4.5.RELEASE
    

    
        UTF-8
    


    
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
        
        
            org.springframework.boot
            spring-boot-starter-redis
        
    

application.properties

# REDIS (RedisProperties)
# Redis数据库索引(默认为0)
spring.redis.database=5
# Redis服务器地址
spring.redis.host=127.0.0.1
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=0

**
说明:
SpringApplication将从以下位置加载application.properties文件,并把他们添加到Spring Environment中:
1.当前目录下的一个/config子目录
2.当前目录
3.一个classpath下的/config包
4.classpath根路径(root)
这个列表是按照优先级排序的(列表中位置高的将覆盖位置低的)
**

启动SpringBoot的Main类

package test;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

测试类

package test;

import javax.annotation.Resource;

import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * Hello world!
 *
 */
@RestController
public class HelloRedisController {
    
    @Resource
    private StringRedisTemplate stringRedisTemplate;
    
    @RequestMapping("/hello")
    public String index() {
        // 保存字符串
        stringRedisTemplate.opsForValue().set("aaa", "222");
        String string = stringRedisTemplate.opsForValue().get("aaa");
        System.out.println(string);
        return "Hello World";
    }
}

测试方法:
启动main类,然后输入http://localhost:8080/hello来查看是否整合成功。

若有兴趣,欢迎来加入群,【Java初学者学习交流群】:458430385,此群有Java开发人员、UI设计人员和前端工程师。有问必答,共同探讨学习,一起进步!
欢迎关注我的微信公众号【Java码农社区】,会定时推送各种干货:


SpringBoot(3)、简单整合Redis_第1张图片
qrcode_for_gh_577b64e73701_258.jpg

你可能感兴趣的:(SpringBoot(3)、简单整合Redis)