Administrator
2026-06-01 65fbbf04892c6864906670033a9bffec1f7911c7
src/main/java/com/xcong/excoin/configurations/WebMvcConfig.java
@@ -1,15 +1,13 @@
package com.xcong.excoin.configurations;
import com.xcong.excoin.configurations.security.UserAuthenticationArgumentResolver;
import com.xcong.excoin.utils.SpringContextHolder;
import com.xcong.excoin.configurations.properties.AliOssProperties;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringBootConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import javax.annotation.Resource;
import java.util.List;
/**
@@ -20,9 +18,12 @@
@Slf4j
public class WebMvcConfig implements WebMvcConfigurer {
    @Resource
    private AliOssProperties aliOssProperties;
    @Override
    public void addArgumentResolvers(List<HandlerMethodArgumentResolver> resolvers) {
        resolvers.add(new UserAuthenticationArgumentResolver());
    }
    /**
@@ -38,8 +39,4 @@
                .allowCredentials(true).maxAge(3600);
    }
//    @Bean
//    public SpringContextHolder springContextHolder() {
//        return new SpringContextHolder();
//    }
}