对比新文件 |
| | |
| | | package org.springblade.core.api.crypto.config; |
| | | |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springblade.core.api.crypto.core.ApiDecryptParamResolver; |
| | | import org.springframework.boot.autoconfigure.AutoConfiguration; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
| | | import org.springframework.boot.context.properties.EnableConfigurationProperties; |
| | | import org.springframework.web.method.support.HandlerMethodArgumentResolver; |
| | | import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * api 绛惧悕鑷姩閰嶇疆 |
| | | * |
| | | * @author L.cm |
| | | */ |
| | | @AutoConfiguration |
| | | @RequiredArgsConstructor |
| | | @EnableConfigurationProperties(ApiCryptoProperties.class) |
| | | @ConditionalOnProperty(value = ApiCryptoProperties.PREFIX + ".enabled", havingValue = "true", matchIfMissing = true) |
| | | public class ApiCryptoConfiguration implements WebMvcConfigurer { |
| | | private final ApiCryptoProperties apiCryptoProperties; |
| | | |
| | | @Override |
| | | public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) { |
| | | argumentResolvers.add(new ApiDecryptParamResolver(apiCryptoProperties)); |
| | | } |
| | | |
| | | } |