springBoot 통합 Redis 절차

1.pom.xml 패키지
    
            org.springframework.boot
            spring-boot-starter-data-redis
        


2.yml 프로필 에 Redis 데이터 원본 설정
redis:
    host:
    password: 
    port: 
    database: 7
    jedis:
      pool:
        max-idle: 10
        max-active: 10
        min-idle: 4

3.실체 대상 을 Redis 에 저장 합 니 다.프로젝트 초기 화 완료 후 핫 이 슈 데 이 터 를 Redis 에 저장 하고 다른 장면 에서 호출 합 니 다.ServletContextListener 인 터 페 이 스 는 ServletContext 대상 의 생명 주 기 를 감청 할 수 있 으 며,실제로는 감청 웹 응용의 생명 주기 이다.servlet 용기 가 웹 애플 리 케 이 션 을 시작 하거나 종료 할 때 ServletContextEvent 이 벤트 를 촉발 합 니 다.이 사건 은 ServletContextListener 에서 처리 합 니 다.ServletContextListener 인터페이스 에서 ServletContextEvent 이 벤트 를 처리 하 는 두 가지 방법 을 정의 했다.또 하 나 는 Redis 가 대상 의 저장 을 지원 하지 않 기 때문에 대상 을 직렬 화하 거나 json 으로 전환 해 야 한 다 는 것 이다.제 가 사용 하 는 것 은 json 으로 전환 하 는 방식 입 니 다.간단 하고 편리 합 니 다.가방 을 직접 도입 하면 바로 사용 할 수 있 고 추가 코드 가 필요 없습니다.
/**
 * @ClassNameInitServletContextListener
 * @Description TODO
 * @Author Yuyan
 * @Date 2020/8/1815:07
 * @Version V1.0
 */
@WebListener
@RestController
@RequestMapping("/redis")
public class InitServletContextListener implements ServletContextListener {
    @Autowired
    private StringRedisTemplate redisTemplate;
    @Autowired
    private ListFieldService listFieldService;

    public void initService(ServletContextEvent servletContextEvent){
        WebApplicationContext wat = WebApplicationContextUtils.getWebApplicationContext(servletContextEvent.getServletContext());
        listFieldService=wat.getBean(ListFieldService.class);
    }


    @SneakyThrows
    @Override
    public void contextInitialized(ServletContextEvent servletContextEvent) {

        List
formList = listFieldService.getAllField(); for (Form form:formList) { redisTemplate.opsForValue().set("form:"+form.getFormId().toString(),new ObjectMapper().writeValueAsString(form) ); } List customFormList = listFieldService.getAllCustomForm(); for (CustomForm customForm:customFormList) { String keyString = customForm.getUserEid()+"-"+customForm.getFormId().toString(); redisTemplate.opsForValue().set("column:"+keyString, new ObjectMapper().writeValueAsString(customForm)); } } @Override public void contextDestroyed(ServletContextEvent servletContextEvent) { System.out.println(" 。。。"); }

4.Redis 에서 데이터 가 져 오기
  public Object getListFieldConfig(String userEid, String formId) throws JsonProcessingException {
        ObjectMapper om = new ObjectMapper();
        CustomForm customForm = new CustomForm();
        String key = "column:"+userEid+"-"+formId;
       // CustomForm customForm = (CustomForm) redisTemplate.opsForValue().get(key);
       String customForm_1 =  redisTemplate.opsForValue().get(key);
        customForm = om.readValue(customForm_1, CustomForm.class);
        if(null == customForm){
            customForm = customFieldMapper.findCustomField(userEid, formId);
        }

        if(null != customForm){
            return customForm;
        }else{
            Form form = new Form();
            String fKey = "form:"+formId;
            String form_1 =  redisTemplate.opsForValue().get(fKey);
            form = om.readValue(form_1, Form.class);
            if(null == form){
                form = customFieldMapper.findFormById(formId);
            }
            return form;
        }
    }

좋은 웹페이지 즐겨찾기