Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
cms_sys
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
西魏
cms_sys
Commits
622428db
Commit
622428db
authored
Feb 17, 2019
by
ms group dev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
配置更新
parent
26548a7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
19 deletions
+5
-19
WebConfig.java
src/main/java/net/mingsoft/config/WebConfig.java
+5
-19
No files found.
src/main/java/net/mingsoft/config/WebConfig.java
View file @
622428db
...
@@ -31,43 +31,29 @@ public class WebConfig implements WebMvcConfigurer {
...
@@ -31,43 +31,29 @@ public class WebConfig implements WebMvcConfigurer {
public
ActionInterceptor
actionInterceptor
()
{
public
ActionInterceptor
actionInterceptor
()
{
return
new
ActionInterceptor
();
return
new
ActionInterceptor
();
}
}
@Override
@Override
public
void
configurePathMatch
(
PathMatchConfigurer
configurer
)
{
public
void
configurePathMatch
(
PathMatchConfigurer
configurer
)
{
//启用.do后缀
//
启用.do后缀
configurer
.
setUseRegisteredSuffixPatternMatch
(
true
);
configurer
.
setUseRegisteredSuffixPatternMatch
(
true
);
}
}
/**
/**
* 增加对rest api鉴权的spring mvc拦截器
* 增加对rest api鉴权的spring mvc拦截器
*/
*/
@Override
@Override
public
void
addInterceptors
(
InterceptorRegistry
registry
)
{
public
void
addInterceptors
(
InterceptorRegistry
registry
)
{
// 排除配置
// 排除配置
registry
.
addInterceptor
(
actionInterceptor
()).
excludePathPatterns
(
"/static/**"
,
"/app/**"
,
"/webjars/**"
,
"/*.html"
,
"/*.htm"
);
registry
.
addInterceptor
(
actionInterceptor
()).
excludePathPatterns
(
"/static/**"
,
"/app/**"
,
"/webjars/**"
,
"/*.html"
,
"/*.htm"
);
}
}
@Bean
public
ServletRegistrationBean
servletRegistrationBean
(
DispatcherServlet
dispatcherServlet
)
{
//只拦截.do的请求
ServletRegistrationBean
<
DispatcherServlet
>
servletServletRegistrationBean
=
new
ServletRegistrationBean
<>(
dispatcherServlet
);
servletServletRegistrationBean
.
addUrlMappings
(
"*.do"
,
"/v2/api-docs"
,
"/swagger-resources"
,
"/swagger-resources/configuration/security"
,
"/swagger-resources/configuration/ui"
);
return
servletServletRegistrationBean
;
}
@Override
@Override
public
void
addResourceHandlers
(
ResourceHandlerRegistry
registry
)
{
public
void
addResourceHandlers
(
ResourceHandlerRegistry
registry
)
{
// swagger
registry
.
addResourceHandler
(
"swagger-ui.html"
).
addResourceLocations
(
"classpath:/META-INF/resources/"
);
registry
.
addResourceHandler
(
"/webjars/**"
).
addResourceLocations
(
"classpath:/META-INF/resources/webjars/"
);
registry
.
addResourceHandler
(
"/html/**"
).
addResourceLocations
(
"classpath:/html/"
);
registry
.
addResourceHandler
(
"/html/**"
).
addResourceLocations
(
"classpath:/html/"
);
registry
.
addResourceHandler
(
"/app/**"
).
addResourceLocations
(
"classpath:/app/"
);
registry
.
addResourceHandler
(
"/app/**"
).
addResourceLocations
(
"classpath:/app/"
);
registry
.
addResourceHandler
(
"/static/**"
).
addResourceLocations
(
"classpath:/static/"
);
registry
.
addResourceHandler
(
"/static/**"
).
addResourceLocations
(
"classpath:/static/"
);
registry
.
addResourceHandler
(
"/api/**"
).
addResourceLocations
(
"classpath:/api/"
);
}
}
/**
/**
...
...
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