remove unused config

This commit is contained in:
TaoYu 2023-07-21 11:10:27 +08:00
parent 659edc8b13
commit cd81af0d4a

View File

@ -1,56 +0,0 @@
/*
* Copyright © 2018 organization baomidou
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.baomidou.dynamic.datasource.creator;
import com.baomidou.dynamic.datasource.enums.SeataMode;
import com.baomidou.dynamic.datasource.toolkit.CryptoUtils;
import lombok.Getter;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
/**
* DataSourceGlobalProperty
*
* @author TaoYu
* @since 4.0.0
*/
@Slf4j
@Getter
@Setter
public class DataSourceGlobalConfig {
/**
* 是否懒加载数据源
*/
private Boolean lazy = false;
/**
* /**
* 是否使用p6spy输出默认不输出
*/
private Boolean p6spy = false;
/**
* 是否使用开启seata默认不开启
*/
private Boolean seata = false;
/**
* seata使用模式默认AT
*/
private SeataMode seataMode = SeataMode.AT;
/**
* 全局默认publicKey
*/
private String publicKey = CryptoUtils.DEFAULT_PUBLIC_KEY_STRING;
}