国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

spring - RedisTemplate為Null報(bào)java.lang.NullPointerException
黃舟
黃舟 2017-04-26 09:01:40
0
1
2273

pom.xml:

    <!-- 添加redis支持 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-redis</artifactId>
    </dependency>
    <dependency>
        <groupId>redis.clients</groupId>
        <artifactId>jedis</artifactId>
        <version>2.6.2</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-redis</artifactId>
        <version>1.5.0.RELEASE</version>
    </dependency>

RedisCacheConfig.java:

   
   @Bean(name="jedisConnectionFactory")
    JedisConnectionFactory jedisConnectionFactory() {
        JedisConnectionFactory factory = new JedisConnectionFactory();
        return factory;
    }

    @Bean
    RedisTemplate<String, Object> redisTemplate() {
        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<String, Object>();
        redisTemplate.setConnectionFactory(jedisConnectionFactory());
        return redisTemplate;
    }
    

工具類(lèi):

@SuppressWarnings("unchecked")
@Component
public class RedisUtil {
    @SuppressWarnings("rawtypes")
    
    @Autowired
    private RedisTemplate redisTemplate;
    
    public void test() {
         redisTemplate.opsForValue().set("q", 123);//這里的redisTemplate=null 不知為何?                          
    }
}

調(diào)用test()方法 報(bào)java.lang.NullPointerException 求指點(diǎn)明燈

黃舟
黃舟

人生最曼妙的風(fēng)景,竟是內(nèi)心的淡定與從容!

reply all(1)
洪濤

You are using springboot integration, but the unit test is junit. It is not included in the springboot environment. Of course there is a problem.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template