SpringBoot(3)、简单整合Redis

作者: 编程界的小学生 | 来源:发表于2017-04-04 19:16 被阅读169次

    Pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>com.ctw.springboot</groupId>
        <artifactId>springboot-redis</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <packaging>jar</packaging>
    
        <name>Spring Boot Blank Project (from https://github.com/making/spring-boot-blank)</name>
        
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>1.4.5.RELEASE</version>
        </parent>
    
        <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        </properties>
    
    
        <dependencies>
            <!-- spring-boot的web启动的jar包 -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
            
            <!-- 所需redis的jar -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-redis</artifactId>
            </dependency>
        </dependencies>
    </project>
    

    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码农社区】,会定时推送各种干货:


    qrcode_for_gh_577b64e73701_258.jpg

    相关文章

      网友评论

        本文标题:SpringBoot(3)、简单整合Redis

        本文链接:https://www.haomeiwen.com/subject/vwdzottx.html