Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
D
data-server
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
licc
data-server
Commits
29e1caab
Commit
29e1caab
authored
Mar 06, 2021
by
liqin
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixed
parent
157f6fbf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
+49
-0
GlobalCorsConfig.java
...c/main/java/cn/wisenergy/web/config/GlobalCorsConfig.java
+49
-0
No files found.
wisenergy-web-admin/src/main/java/cn/wisenergy/web/config/GlobalCorsConfig.java
0 → 100644
View file @
29e1caab
package
cn
.
wisenergy
.
web
.
config
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Value
;
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
;
@Configuration
public
class
GlobalCorsConfig
{
@Value
(
"${cors.url.list:#{null}}"
)
private
String
corsUrlList
;
@Bean
public
CorsFilter
corsFilter
()
{
//1.添加CORS配置信息
CorsConfiguration
config
=
new
CorsConfiguration
();
//1) 允许通过的域,不要写*,否则cookie就无法使用了
if
(
corsUrlList
!=
null
&&
corsUrlList
.
length
()
>
1
)
{
config
.
setAllowedOrigins
(
Arrays
.
asList
(
StringUtils
.
split
(
corsUrlList
,
","
)));
}
else
{
config
.
addAllowedOrigin
(
"*"
);
}
//2) 是否发送Cookie信息
config
.
setAllowCredentials
(
true
);
//3) 允许的请求方式
config
.
addAllowedMethod
(
"OPTIONS"
);
config
.
addAllowedMethod
(
"GET"
);
config
.
addAllowedMethod
(
"POST"
);
config
.
addAllowedMethod
(
"PUT"
);
config
.
addAllowedMethod
(
"DELETE"
);
// 4)允许的头信息
config
.
addAllowedHeader
(
"*"
);
//2.添加映射路径,我们拦截一切请求
UrlBasedCorsConfigurationSource
configSource
=
new
UrlBasedCorsConfigurationSource
();
configSource
.
registerCorsConfiguration
(
"/**"
,
config
);
//3.返回新的CorsFilter.
return
new
CorsFilter
(
configSource
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment