All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hyf.hotrefresh.adapter.spring.config.HotRefreshAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
package com.hyf.hotrefresh.adapter.spring.config;

import com.hyf.hotrefresh.adapter.spring.properties.HotRefreshProperties;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

/**
 * @author baB_hyf
 * @date 2022/05/13
 */
@Configuration
@Conditional(HotRefreshEnableCondition.class)
@ConditionalOnProperty(prefix = HotRefreshProperties.PREFIX, name = "enabled", matchIfMissing = true)
@EnableConfigurationProperties(HotRefreshProperties.class)
@Import({HotRefreshFilterConfiguration.class, MappedInterceptorEscapeConfiguration.class})
public class HotRefreshAutoConfiguration {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy