Merge remote-tracking branch 'origin/dev' into dev
commit
4e3ee4e7ac
|
|
@ -1,20 +0,0 @@
|
||||||
package com.zcloud.basic.info.config;
|
|
||||||
|
|
||||||
import com.jjb.saas.framework.auth.filter.AuthenticationFilter;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
@Slf4j
|
|
||||||
public class LocalDevFilterConfig {
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public FilterRegistrationBean<AuthenticationFilter> disableAuthenticationFilter(AuthenticationFilter authenticationFilter) {
|
|
||||||
log.info("========== 本地开发环境:禁用 AuthenticationFilter 过滤器 ==========");
|
|
||||||
FilterRegistrationBean<AuthenticationFilter> registration = new FilterRegistrationBean<>(authenticationFilter);
|
|
||||||
registration.setEnabled(false);
|
|
||||||
return registration;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
common:
|
|
||||||
mysql:
|
|
||||||
host: nlb-kd2xz70qhllfet2koj.cn-beijing.nlb.aliyuncsslb.com
|
|
||||||
port: 33068
|
|
||||||
username: root
|
|
||||||
password: 5tS3owZ7w8Uk1egv
|
|
||||||
dahua:
|
|
||||||
config:
|
|
||||||
dockFlag: 1
|
|
||||||
primeportUrl: https://gbs-gateway.qhdsafety.com
|
|
||||||
primeportGateway: primeport
|
|
||||||
Loading…
Reference in New Issue