Skip to content

Instantly share code, notes, and snippets.

View GitHub-fly's full-sized avatar
🌴
On vacation

xunmi GitHub-fly

🌴
On vacation
View GitHub Profile
@GitHub-fly
GitHub-fly / CorsConfig.java
Last active May 3, 2020 09:58
Java相关的通用类
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;
import java.util.Arrays;
import java.util.List;