com.taotao.cloud.data.p6spy.configuration.P6spyAutoConfiguration Maven / Gradle / Ivy
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* 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
*
* https://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.taotao.cloud.data.p6spy.configuration;
import com.p6spy.engine.spy.P6SpyDriver;
import com.taotao.cloud.common.constant.StarterName;
import com.taotao.cloud.common.utils.log.LogUtils;
import com.taotao.cloud.data.p6spy.ext.P6spyConfigLoaderBeanPostProcessor;
import com.taotao.cloud.data.p6spy.properties.P6spyProperties;
import javax.sql.DataSource;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* P6spyAutoConfiguration
*
* @author shuigedeng
* @version 2022.03
* @since 2020/10/14 09:18
*/
@Configuration(proxyBeanMethods = false)
@ConditionalOnClass(P6SpyDriver.class)
@EnableConfigurationProperties(P6spyProperties.class)
@ConditionalOnBean(DataSource.class)
@AutoConfigureAfter(value = DataSourceAutoConfiguration.class)
@ConditionalOnProperty(prefix = P6spyProperties.PREFIX, name = "enabled", havingValue = "true", matchIfMissing = true)
public class P6spyAutoConfiguration implements InitializingBean {
@Override
public void afterPropertiesSet() throws Exception {
LogUtils.started(P6spyAutoConfiguration.class, StarterName.DATA_P6SPY_STARTER);
}
@Bean
public static P6spyConfigLoaderBeanPostProcessor cusP6spyConfigLoaderBeanPostProcessor() {
return new P6spyConfigLoaderBeanPostProcessor();
}
// @Autowired
// private P6spyProperties p6spyProperties;
//
// @Override
// public void run(ApplicationArguments args) {
// Map defaults = P6SpyOptions.getActiveInstance().getDefaults();
// Map options = new HashMap<>();
// defaults.forEach((k,v)->{
// Object value = ReflectionUtil.tryGetValue(p6spyProperties, k);
// if(Objects.nonNull(value)){
// options.put(k, value.toString());
// }else {
// options.put(k,v);
// }
// });
//
// P6SpyOptions.getActiveInstance().load(options);
// P6ModuleManager.getInstance().reload();
// }
}