123456789101112131415161718 |
- package cn.gygxzc.envir.config.encrypt;
- import cn.gygxzc.cloud.tina.auth.cache.ClientRedisTemplate;
- import cn.gygxzc.cloud.tina.auth.encrypt.EncryptResponseBodyAdvice;
- import com.fasterxml.jackson.databind.ObjectMapper;
- import org.springframework.web.bind.annotation.ControllerAdvice;
- /**
- * @author tuonina
- * @createTime 2019/2/26
- */
- @ControllerAdvice("cn.gygxzc.envir")
- public class WebEncodeResponseBodyAdvice extends EncryptResponseBodyAdvice {
- public WebEncodeResponseBodyAdvice(ObjectMapper objectMapper, ClientRedisTemplate template) {
- super(objectMapper, template);
- }
- }
|