Newer
Older
smartwell_demos / src / main / java / com / casic / util / CacheUtil.java
chaizhuang on 24 Sep 2022 361 bytes 硫化氢新增
package com.casic.util;

import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import java.util.HashMap;
import java.util.Map;

@Component
public class CacheUtil {
    public static volatile Map<String,String> serialBuf;
    @PostConstruct
    public void init() {
        serialBuf = new HashMap<>();
    }
}