【问题标题】:Spring boot cache not working with @PostConstruct or @AfterPropertiesSetSpring Boot 缓存不适用于 @PostConstruct 或 @AfterPropertiesSet
【发布时间】:2019-05-02 09:40:37
【问题描述】:

当我的应用程序启动时,我尝试使用数据初始化我的缓存,但这不起作用。 我的代码:

springBootApplication

package com.r2b.springcache;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.concurrent.ConcurrentMapCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;

@ComponentScan("com.r2b")
@SpringBootApplication
@EnableCaching
public class SpringCacheApplication {

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

    @Bean
    public CacheManager cacheManager() {
        return new ConcurrentMapCacheManager("student");
    }
}

学生

package com.r2b.model;

public class Student {

    String id;
    String name;
    String clz;

    public Student(String id, String name, String clz) {
        super();
        this.id = id;
        this.name = name;
        this.clz = clz;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getClz() {
        return clz;
    }

    public void setClz(String clz) {
        this.clz = clz;
    }

    //Setters and getters

}

学生服务

package com.r2b.service;

import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;

import com.r2b.model.Student;

@Service
public class StudentService  
{

    @Cacheable("student")
    public Student getStudentByID(String id)
    {
        try
        {
            System.out.println("Going to sleep for 5 Secs.. to simulate backend call.");
            Thread.sleep(1000*5);
        }
        catch (InterruptedException e)
        {
            e.printStackTrace();
        }

        return new Student(id,"Sajal" ,"V");
    }

}

学生控制器

package com.r2b.controller;

import javax.annotation.PostConstruct;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

import com.r2b.model.Student;
import com.r2b.service.StudentService;

@RestController
public class StudentController
{

    @Autowired
    StudentService studentService;


    @PostConstruct
    public void init() {
        studentService.getStudentByID("1");
    }

    @GetMapping("/student/{id}")
    public Student findStudentById(@PathVariable String id)
    {
        System.out.println("Searching by ID  : " + id);

        return studentService.getStudentByID(id);
    }
}

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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.r2b</groupId>
    <artifactId>spring-cache</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>spring-cache</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.5.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

我第一次去http://localhost:8080/student/1时,缓存没有激活,响应时间超过5秒,但是我刷新时,缓存响应了,请求需要几毫秒!尽管我在 postConstruct 中调用了缓存方法,但我尝试使用 @AfterPropertiesSet 并且它也不起作用!

有什么想法吗?

谢谢

【问题讨论】:

  • 标题应该是英文的。
  • 你的 init() 方法真的被执行了吗?
  • 是的,在spring启动时执行

标签: java spring spring-boot caching spring-cache


【解决方案1】:

这不起作用,因为代理尚未初始化。这其实是documented in the user guide

在代理模式下(默认),只有通过代理传入的外部方法调用会被拦截。这意味着自调用(实际上,目标对象中的一个方法调用目标对象的另一个方法)不会在运行时导致实际缓存,即使调用的方法标记有@Cacheable。在这种情况下考虑使用 aspectj 模式。此外,代理必须完全初始化以提供预期的行为,因此您不应在初始化代码(即@PostConstruct)中依赖此功能。

这正是您在这里所做的。缓存应该尽可能透明,所以在启动时预加载缓存对我来说有点奇怪(并且会增加启动时间)。

【讨论】:

  • 如果可能的话,你能发布一个aspectj配置的例子吗?
  • 如果我设置了一个在加载上下文 spring 后 1 分钟异步运行的方法,是不是比使用 aspectj 更干净?
【解决方案2】:

答案很简单,但我几乎花了一天时间才弄清楚用@Cacheable 装饰的方法在@PostConstruct 中无效

只需将您的 @PostConstruct 替换为 @EventListener(ApplicationReadyEvent.class)

@EventListener(ApplicationReadyEvent.class)
public void init() {
    studentService.getStudentByID("1");
}

注意,如果使用 @PostConstructEventListener(ApplicationReadyEvent.class) 事件装饰的方法引发异常,您的应用程序将退出...

【讨论】:

    猜你喜欢
    • 2018-04-11
    • 2020-12-02
    • 2021-01-25
    • 2018-11-09
    • 1970-01-01
    • 2017-03-29
    • 1970-01-01
    • 2018-05-27
    • 2015-04-13
    相关资源
    最近更新 更多