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

io.github.nichetoolkit.rest.configure.RestUtilsAutoConfigure Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package io.github.nichetoolkit.rest.configure;

import io.github.nichetoolkit.rest.worker.RadixWorker;
import io.github.nichetoolkit.rest.worker.jwt.JwtWorker;
import io.github.nichetoolkit.rest.worker.rsa.RsaWorker;
import io.github.nichetoolkit.rest.worker.sha.ShaWorker;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;

/**
 * 

RestUtilsAutoConfigure

* @author Cyan ([email protected]) * @version v1.0.0 */ @Slf4j @Configuration @ComponentScan(basePackages = {"io.github.nichetoolkit.rest"}) public class RestUtilsAutoConfigure { public RestUtilsAutoConfigure() { log.debug("================= rest-toolkit-utils initiated ! ==================="); } @Bean @Primary @ConditionalOnMissingBean(RadixWorker.class) @ConditionalOnProperty(value = "nichetoolkit.rest.radix.enabled", havingValue = "true", matchIfMissing = true) public RadixWorker radixWorker(RestRadixProperties radixProperties) { return new RadixWorker(radixProperties); } @Bean @Primary @ConditionalOnMissingBean(JwtWorker.class) @ConditionalOnProperty(value = "nichetoolkit.rest.jwt.enabled", havingValue = "true", matchIfMissing = true) public JwtWorker jwtWorker(RestJwtProperties jwtProperties) { return new JwtWorker(jwtProperties); } @Bean @Primary @ConditionalOnMissingBean(ShaWorker.class) @ConditionalOnProperty(value = "nichetoolkit.rest.sha.enabled", havingValue = "true", matchIfMissing = true) public ShaWorker shaWorker(RestShaProperties shaProperties) { return new ShaWorker(shaProperties); } @Bean @Primary @ConditionalOnMissingBean(RsaWorker.class) @ConditionalOnProperty(value = "nichetoolkit.rest.rsa.enabled", havingValue = "true", matchIfMissing = true) public RsaWorker rsaWorker(RestRsaProperties rsaProperties) { return new RsaWorker(rsaProperties); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy