del 租户配置

master
jay 2024-06-17 19:19:11 +08:00
parent 4957532ff6
commit 5027fbdaec
1 changed files with 44 additions and 45 deletions

View File

@ -1,45 +1,44 @@
/* ///*
* // *
* * | Licensed OPENIITA // * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
* * +---------------------------------------------------------------------- // * * +----------------------------------------------------------------------
* * | Author: xw2sy@163.com // * * | Author: xw2sy@163.com
* * +---------------------------------------------------------------------- // * * +----------------------------------------------------------------------
* // *
* Copyright [2024] [OPENIITA] // * Copyright [2024] [OPENIITA]
* // *
* Licensed under the Apache License, Version 2.0 (the "License"); // * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. // * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at // * You may obtain a copy of the License at
* // *
* http://www.apache.org/licenses/LICENSE-2.0 // * http://www.apache.org/licenses/LICENSE-2.0
* // *
* Unless required by applicable law or agreed to in writing, software // * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, // * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and // * See the License for the specific language governing permissions and
* limitations under the License. // * limitations under the License.
* / // * /
*/ // */
//
package cc.iotkit.common.web.config; //package cc.iotkit.common.web.config;
//
import cc.iotkit.common.web.interceptor.TenantInterceptor; //import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Configuration; //import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry; //import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; //
///**
/** // * 注册租户ID拦截器.
* ID. // *
* // * @author Tiger Chen
* @author Tiger Chen // * created on 2023/7/15 14:48
* created on 2023/7/15 14:48 // */
*/ //
//@Configuration
@Configuration //public class TenantConfig implements WebMvcConfigurer {
public class TenantConfig implements WebMvcConfigurer { // @Override
@Override // public void addInterceptors(InterceptorRegistry registry) {
public void addInterceptors(InterceptorRegistry registry) { // registry.addInterceptor(new TenantInterceptor());
registry.addInterceptor(new TenantInterceptor()); // }
} //
//}
}