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

com.dream.boot.share.ShareSelector Maven / Gradle / Ivy

The newest version!
package com.dream.boot.share;

import org.springframework.context.annotation.ImportSelector;
import org.springframework.core.type.AnnotationMetadata;

public class ShareSelector implements ImportSelector {
    @Override
    public String[] selectImports(AnnotationMetadata importingClassMetadata) {
        return new String[]{DataSourceConfiguration.class.getName()};
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy