springBoot 통합 Redis 절차
3645 단어 JavaSpringBootspringboot자바
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
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;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.