当前位置: 首页 > 编程笔记 >

Spring Boot Hazelcast Caching 使用和配置详解

戚峻
2023-03-14
本文向大家介绍Spring Boot Hazelcast Caching 使用和配置详解,包括了Spring Boot Hazelcast Caching 使用和配置详解的使用技巧和注意事项,需要的朋友参考一下

本文将展示spring boot 结合 Hazelcast 的缓存使用案例。

1. Project Structure

2. Maven Dependencies

<?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.zzf</groupId>
  <artifactId>spring-boot-hazelcast</artifactId>
  <version>1.0-SNAPSHOT</version>

  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.1.RELEASE</version>
  </parent>

  <dependencies>

    <!-- spring boot  -->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-cache</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <!-- hazelcast jar -->
    <dependency>
      <groupId>com.hazelcast</groupId>
      <artifactId>hazelcast-all</artifactId>
      <version>3.10.1</version>
    </dependency>
  </dependencies>

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

3. Hazelcast Caching Service

通过使用

  • @cachable注释来注释play方法,将缓存后续调用的结果。
  • @CacheEvict(allEntries=true)清除缓存中的所有条目。
  • @CacheConfig(cachenames=”instruments”)注册了带有指定缓存的spring框架缓存注释的所有方法。
@Service
@CacheConfig(cacheNames = "instruments")
public class MusicService {

  private static Logger log = LoggerFactory.getLogger(MusicService.class);
  @CacheEvict(allEntries = true)
  public void clearCache(){}

  // 表示的是属性为 trombone 就进行缓存
  @Cacheable(condition = "#instrument.equals('trombone')")
  public String play(String instrument){

    log.info("Executing: " + this.getClass().getSimpleName() + ".play(\"" + instrument + "\");");
    return "playing " + instrument + "!";
  }
}

4. Hazelcast Caching Configuration

如果类路径下存在hazelcast, spring boot 将会自动创建Hazelcast 的实例。

下面将介绍两种加载的方式:

  • 使用java 配置的方式
  • 使用hazelcast.xml XML 的配置

4.1 Hazelcast Java Configuration

@Configuration
public class HazelcastConfiguration {
  @Bean
  public Config hazelcastConfig(){
    return new Config().setInstanceName("hazelcast-instance")
        .addMapConfig(
              new MapConfig()
                  .setName("instruments")
                  .setMaxSizeConfig(new MaxSizeConfig(200, MaxSizeConfig.MaxSizePolicy.FREE_HEAP_SIZE))
                  .setEvictionPolicy(EvictionPolicy.LRU)
                  .setTimeToLiveSeconds(20)
        );
  }
}

4.2 Hazelcast XML Configuration

可以使用xml 配置 Hazelcast , 在src/main/resources 添加一个文件hazelcast.xml

spring boot 将会自动注入配置文件, 当然也可以指定路径路径, 使用属性spring.hazelcast.config 配置在yml 或者properties 文件中, 例如下面所示:

<?xml version="1.0" encoding="UTF-8"?>
<hazelcast
    xsi:schemaLocation="http://www.hazelcast.com/schema/config http://www.hazelcast.com/schema/config/hazelcast-config.xsd"
    xmlns="http://www.hazelcast.com/schema/config"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <map name="instruments">
    <max-size>200</max-size>
    <eviction-policy>LFU</eviction-policy>
    <time-to-live-seconds>20</time-to-live-seconds>
  </map>
</hazelcast>

具体的application.properties 和 application.yml 文件显示

# application.yml
spring:
 hazelcast:
  config: classpath:config/hazelcast.xml
# application.properties
spring.hazelcast.config=classpath:config/hazelcast.xml

5. 访问controller

@Controller
public class HazelcastController {

  private Logger logger = LoggerFactory.getLogger(HazelcastController.class);

  @Autowired
  private MusicService musicService;

  @Autowired
  private CacheManager cacheManager;

  @RequestMapping("/hezelcast")
  @ResponseBody
  public void getHazelcast(){

    logger.info("Spring Boot Hazelcast Caching Example Configuration");
    logger.info("Using cache manager: " + cacheManager.getClass().getName());

    // 清空缓存
    musicService.clearCache();

    // 调用方法
    play("trombone");
    play("guitar");

    play("trombone");
    play("guitar");

    play("bass");
    play("trombone");
  }

  private void play(String instrument){
    logger.info("Calling: " + MusicService.class.getSimpleName() + ".play(\"" + instrument + "\");");
    musicService.play(instrument);
  }
}

6. Bootstrap Hazelcast Caching Application

使用注解@EnableCaching 开启缓存机制.

@EnableCaching
@SpringBootApplication
public class HazelcastApplication{

  private Logger logger = LoggerFactory.getLogger(HazelcastApplication.class);

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

7. 访问和解释

2018-06-02 22:15:18.488  INFO 41728 --- [nio-8080-exec-4] c.h.i.p.impl.PartitionStateManager       : [192.168.1.1]:5701 [dev] [3.10.1] Initializing cluster partition table arrangement...
2018-06-02 22:15:18.521  INFO 41728 --- [nio-8080-exec-4] c.z.s.h.controller.HazelcastController   : Calling: MusicService.play("trombone");
2018-06-02 22:15:18.558  INFO 41728 --- [nio-8080-exec-4] c.z.s.hazelcast.service.MusicService     : Executing: MusicService.play("trombone");
2018-06-02 22:15:18.563  INFO 41728 --- [nio-8080-exec-4] c.z.s.h.controller.HazelcastController   : Calling: MusicService.play("guitar");
2018-06-02 22:15:18.563  INFO 41728 --- [nio-8080-exec-4] c.z.s.hazelcast.service.MusicService     : Executing: MusicService.play("guitar");
2018-06-02 22:15:18.563  INFO 41728 --- [nio-8080-exec-4] c.z.s.h.controller.HazelcastController   : Calling: MusicService.play("trombone");
2018-06-02 22:15:18.564  INFO 41728 --- [nio-8080-exec-4] c.z.s.h.controller.HazelcastController   : Calling: MusicService.play("guitar");
2018-06-02 22:15:18.565  INFO 41728 --- [nio-8080-exec-4] c.z.s.hazelcast.service.MusicService     : Executing: MusicService.play("guitar");
2018-06-02 22:15:18.565  INFO 41728 --- [nio-8080-exec-4] c.z.s.h.controller.HazelcastController   : Calling: MusicService.play("bass");
2018-06-02 22:15:18.565  INFO 41728 --- [nio-8080-exec-4] c.z.s.hazelcast.service.MusicService     : Executing: MusicService.play("bass");
2018-06-02 22:15:18.566  INFO 41728 --- [nio-8080-exec-4] c.z.s.h.controller.HazelcastController   : Calling: MusicService.play("trombone");

从上面的可以看到 只有trombone , 才会直接访问缓存信息, 正是在MusicService 类中的方法play 上时候注解进行过滤:
@Cacheable(condition = “#instrument.equals(‘trombone')”)

本文参考地址: https://memorynotfound.com/spring-boot-hazelcast-caching-example-configuration/

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文向大家介绍详解log4j.properties的简单配置和使用,包括了详解log4j.properties的简单配置和使用的使用技巧和注意事项,需要的朋友参考一下 本文介绍了详解log4j.properties的简单配置和使用,分享给大家,具体如下: 简单log4j.properties配置示例 JAVA 代码部分 需要log4j JAR包 Log4j支持两种格式的配置文件:xml和prope

  • 本文向大家介绍详解spring Boot Cli的配置和使用,包括了详解spring Boot Cli的配置和使用的使用技巧和注意事项,需要的朋友参考一下 SpringBootCLI是一个命令行工具,可用于快速搭建基于spring的原型。它支持运行Groovy脚本,这也就意味着你可以使用类似Java的语法,但不用写很多的模板代码。 Spring Boot不一定非要配合CLI使用,但它绝对是Spri

  • 本文向大家介绍详解spring-boot actuator(监控)配置和使用,包括了详解spring-boot actuator(监控)配置和使用的使用技巧和注意事项,需要的朋友参考一下 在生产环境中,需要实时或定期监控服务的可用性。spring-boot 的actuator(监控)功能提供了很多监控所需的接口。简单的配置和使用如下: 1、引入依赖: 如果使用http调用的方式,还需要这个依赖:

  • 本文向大家介绍详解nginx upstream 配置和作用,包括了详解nginx upstream 配置和作用的使用技巧和注意事项,需要的朋友参考一下 配置例子 指令 语法: upstream name { ... } 默认值: — 上下文: http 定义一组服务器。 这些服务器可以监听不同的端口。 而且,监听在TCP和UNIX域套接字的服务器可以混用。 例子: 默认情况下,nginx按加权轮转

  • 本文向大家介绍IDEA的Mybatis Log Plugin插件配置和使用详解,包括了IDEA的Mybatis Log Plugin插件配置和使用详解的使用技巧和注意事项,需要的朋友参考一下 在使用Mybatis开发项目时,由于避免出现SQL注入,大部分情况下都是使用#{}占位符的方式传参。 所以日志打印SQL时,打印的也是占位符,如: 如果SQL比较复杂,参数又很多的话,要通过日志拼凑真正可执行

  • 本文向大家介绍Spring Boot Log4j2的配置使用详解,包括了Spring Boot Log4j2的配置使用详解的使用技巧和注意事项,需要的朋友参考一下 后台程序开发及上线时,一般都会用到Log信息打印及Log日志记录,开发时通过Log信息打印可以快速的定位问题所在,帮助我们快捷开发。程序上线后如遇到Bug或错误,此时则需要日志记录来查找发现问题所在。 Spring Boot 可以集成很