Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
l jh
a1
Commits
cfa5e1fd
Commit
cfa5e1fd
authored
5 years ago
by
铭飞
Committed by
Gitee
5 years ago
Browse files
Options
Download
Plain Diff
!177 添加文件限制
Merge pull request !177 from 灰色DT/4.7.1
parents
347d5219
23ad3156
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
src/main/java/net/mingsoft/config/WebConfig.java
+11
-12
src/main/java/net/mingsoft/config/WebConfig.java
src/main/resources/application.yml
+1
-1
src/main/resources/application.yml
src/main/webapp/templets/1/default/about.htm
+1
-1
src/main/webapp/templets/1/default/about.htm
src/main/webapp/templets/1/default/advice.htm
+1
-1
src/main/webapp/templets/1/default/advice.htm
src/main/webapp/templets/1/default/case-list.htm
+1
-1
src/main/webapp/templets/1/default/case-list.htm
src/main/webapp/templets/1/default/news-show.htm
+1
-1
src/main/webapp/templets/1/default/news-show.htm
with
16 additions
and
17 deletions
+16
-17
src/main/java/net/mingsoft/config/WebConfig.java
+
11
-
12
View file @
cfa5e1fd
...
...
@@ -3,6 +3,7 @@ package net.mingsoft.config;
import
java.io.File
;
import
org.springframework.aop.Advisor
;
import
net.mingsoft.basic.filter.XSSEscapeFilter
;
import
org.springframework.aop.support.DefaultPointcutAdvisor
;
import
org.springframework.aop.support.JdkRegexpMethodPointcut
;
import
org.springframework.boot.web.servlet.FilterRegistrationBean
;
...
...
@@ -131,18 +132,16 @@ public class WebConfig implements WebMvcConfigurer {
return
new
DefaultPointcutAdvisor
(
druidStatPointcut
(),
druidStatInterceptor
());
}
// /**
// * xssFilter注册
// */
// @Bean
// public FilterRegistrationBean xssFilterRegistration() {
// XssFilter xssFilter = new XssFilter();
// xssFilter.setUrlExclusion(Arrays.asList("/static/"));
// FilterRegistrationBean registration = new
// FilterRegistrationBean(xssFilter);
// registration.addUrlPatterns("/*");
// return registration;
// }
/**
* xssFilter注册
*/
@Bean
public
FilterRegistrationBean
xssFilterRegistration
()
{
XSSEscapeFilter
xssFilter
=
new
XSSEscapeFilter
();
FilterRegistrationBean
registration
=
new
FilterRegistrationBean
(
xssFilter
);
registration
.
addUrlPatterns
(
"/*"
);
return
registration
;
}
/**
* RequestContextListener注册
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/application.yml
+
1
-
1
View file @
cfa5e1fd
...
...
@@ -13,7 +13,7 @@ ms:
upload
:
path
:
/upload
denied
:
exe
denied
:
.
exe
,.jsp
allowed
:
jpg
max-size
:
1
memory-size
:
4096
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/templets/1/default/about.htm
+
1
-
1
View file @
cfa5e1fd
...
...
@@ -6,7 +6,7 @@
<body>
<
#include
"
head.htm
"
/>
<div
class=
"ms-banner"
style=
"background:url({ms:global.host/}/{ms:global.style/}images/about_us.jpg) no-repeat center;"
>
<div
class=
"ms-banner"
style=
"background:url({ms:global.host/}/{ms:global.style/}
/
images/about_us.jpg) no-repeat center;"
>
<p
class=
"banner_tit_about animated fadeInLeft"
>
关于我们
</p>
<p
class=
"banner_tit_about_des animated fadeInRight"
>
About us
</p>
</div>
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/templets/1/default/advice.htm
+
1
-
1
View file @
cfa5e1fd
...
...
@@ -5,7 +5,7 @@
</head>
<body>
<
#include
"
head.htm
"
/>
<div
class=
"ms-banner"
style=
"background:url({ms:global.host/}/{ms:global.style/}images/talk_online.jpeg) no-repeat center;"
>
<div
class=
"ms-banner"
style=
"background:url({ms:global.host/}/{ms:global.style/}
/
images/talk_online.jpeg) no-repeat center;"
>
<p
class=
"banner_tit_other animated fadeInLeft"
>
在线留言
</p>
<p
class=
"banner_tit_other_des animated fadeInRight"
>
Talk online
</p>
</div>
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/templets/1/default/case-list.htm
+
1
-
1
View file @
cfa5e1fd
...
...
@@ -6,7 +6,7 @@
<body>
<
#include
"
head.htm
"
/>
<div
class=
"ms-banner"
style=
"background:url({ms:global.host/}/{ms:global.style/}images/00.png) no-repeat center;"
>
<div
class=
"ms-banner"
style=
"background:url({ms:global.host/}/{ms:global.style/}
/
images/00.png) no-repeat center;"
>
<p
class=
"banner_tit_other animated fadeInLeft"
>
案
例
</p>
<p
class=
"banner_tit_other_des animated fadeInRight"
>
Case list
</p>
</div>
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/templets/1/default/news-show.htm
+
1
-
1
View file @
cfa5e1fd
...
...
@@ -8,7 +8,7 @@
<body>
<
#include
"
head.htm
"
>
<div
class=
"ms-banner"
style=
"background:url({ms:global.host/}/{ms:global.style/}images/news2.png) no-repeat center;"
>
<div
class=
"ms-banner"
style=
"background:url({ms:global.host/}/{ms:global.style/}
/
images/news2.png) no-repeat center;"
>
<p
class=
"banner_tit_other animated fadeInLeft"
>
公司动态
</p>
<p
class=
"banner_tit_other_des animated fadeInRight"
>
Our company
</p>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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