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

org.treeleafj.xdoc.boot.XDocConfiguration Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.treeleafj.xdoc.boot;

import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;

/**
 * @author leaf
 * @date 2017-03-09 15:29
 */
public class XDocConfiguration {

    @Bean
    @ConditionalOnProperty(prefix = "xdoc", name = "enable", matchIfMissing = true)
    public XDocController xDocController() {
        return new XDocController();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy