master
sgjj 6 years ago
parent fd029a04c5
commit 84cb91ec62
  1. 64
      doc/4.7.0-to-4.7.1-mysql.sql
  2. 1190
      doc/db-mcms-mysql-4.7.1.sql
  3. 186
      doc/历史/4.6.5-to-4.7.0-mysql.sql
  4. 1556
      doc/历史/4.6.5-to-4.7.0-sqlserver.sql
  5. 2292
      doc/历史/db-mcms-mysql-4.7.0.sql
  6. 7540
      doc/历史/db-mcms-sqlserver-4.7.0.sql
  7. 1
      pom.xml
  8. 20
      src/main/java/net/mingsoft/config/WebConfig.java

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -6,6 +6,7 @@
<groupId>net.mingsoft</groupId>
<artifactId>wb-mcms</artifactId>
<version>4.7.1</version>
<packaging>war</packaging>
<name>ms-mcms</name>
<properties>
<java.version>1.8</java.version>

@ -133,16 +133,16 @@ public class WebConfig implements WebMvcConfigurer {
return new DefaultPointcutAdvisor(druidStatPointcut(), druidStatInterceptor());
}
/**
* xssFilter注册
*/
@Bean
public FilterRegistrationBean xssFilterRegistration() {
XSSEscapeFilter xssFilter = new XSSEscapeFilter();
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注册

Loading…
Cancel
Save