Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gdtel-gztel-school-center
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴学德
gdtel-gztel-school-center
Commits
5baebd82
Commit
5baebd82
authored
Sep 03, 2021
by
陈浩建
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CORS跨域漏洞修復
parent
5db85f65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
gateway/src/main/java/com/winsun/framework/zuul/ZuulServiceApplication.java
+8
-8
No files found.
gateway/src/main/java/com/winsun/framework/zuul/ZuulServiceApplication.java
View file @
5baebd82
...
...
@@ -20,7 +20,7 @@ public class ZuulServiceApplication {
public
CorsFilter
corsFilter
()
{
final
UrlBasedCorsConfigurationSource
source
=
new
UrlBasedCorsConfigurationSource
();
final
CorsConfiguration
config
=
new
CorsConfiguration
();
config
.
setAllowCredentials
(
true
);
// 允许cookies跨域
//
config.setAllowCredentials(true); // 允许cookies跨域
config
.
addAllowedOrigin
(
"http://localhost:3000"
);
config
.
addAllowedOrigin
(
"https://dx.dianyuanjiangli.com"
);
config
.
addAllowedOrigin
(
"*ytx.21cn.com"
);
...
...
@@ -33,16 +33,16 @@ public class ZuulServiceApplication {
config
.
addAllowedOrigin
(
"*enter.gd189.cn"
);
config
.
addAllowedOrigin
(
"14.116.225.*"
);
config
.
addAllowedHeader
(
"*"
);
// 允许访问的头信息,*表示全部
config
.
setMaxAge
(
18000L
);
// 预检请求的缓存时间(秒),即在这个时间段里,对于相同的跨域请求不会再预检了
config
.
addAllowedMethod
(
"*"
);
// 允许提交请求的方法,*表示全部允许,也可以单独设置GET、PUT等
//
c
onfig.addAllowedMethod("HEAD");
config
.
addAllowedMethod
(
"GET"
);
// 允许Get的请求方法
//
config.addAllowedHeader("*");// 允许访问的头信息,*表示全部
//
config.setMaxAge(18000L);// 预检请求的缓存时间(秒),即在这个时间段里,对于相同的跨域请求不会再预检了
//
config.addAllowedMethod("*");// 允许提交请求的方法,*表示全部允许,也可以单独设置GET、PUT等
//
c
onfig.addAllowedMethod("HEAD");
//
config.addAllowedMethod("GET");// 允许Get的请求方法
// config.addAllowedMethod("PUT");
config
.
addAllowedMethod
(
"POST"
);
//
config.addAllowedMethod("POST");
// config.addAllowedMethod("DELETE");
// config.addAllowedMethod("PATCH");
source
.
registerCorsConfiguration
(
"/**"
,
config
);
//
source.registerCorsConfiguration("/**", config);
return
new
CorsFilter
(
source
);
}
...
...
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