Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_backend
Commits
93203234
Commit
93203234
authored
Jul 20, 2023
by
shiyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
跨域
parent
ee6d1cf4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
ch-core/src/main/java/com/wwdz/ch/core/config/WebCorsConfig.java
.../src/main/java/com/wwdz/ch/core/config/WebCorsConfig.java
+28
-0
No files found.
ch-core/src/main/java/com/wwdz/ch/core/config/WebCorsConfig.java
0 → 100644
View file @
93203234
package
com.wwdz.ch.core.config
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.web.servlet.config.annotation.CorsRegistry
;
import
org.springframework.web.servlet.config.annotation.EnableWebMvc
;
import
org.springframework.web.servlet.config.annotation.WebMvcConfigurer
;
@Configuration
@EnableWebMvc
public
class
WebCorsConfig
implements
WebMvcConfigurer
{
@Override
public
void
addCorsMappings
(
CorsRegistry
registry
)
{
// 设置允许跨域的路径
registry
.
addMapping
(
"/**"
)
// 设置允许跨域请求的域名
.
allowedOrigins
(
"*"
)
// 是否允许证书 不再默认开启
.
allowCredentials
(
true
)
// 设置允许的方法
.
allowedMethods
(
"*"
)
// 允许任何请求头
.
allowedHeaders
(
"*"
)
// 跨域允许时间
.
maxAge
(
360000
);
}
}
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