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

zed.service.messagestore.attachment.AttachmentMessageStoreServiceBoot Maven / Gradle / Ivy

The newest version!
package zed.service.messagestore.attachment;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.context.web.SpringBootServletInitializer;

public class AttachmentMessageStoreServiceBoot extends SpringBootServletInitializer {

    public static void main(String... args) {
        new SpringApplication(AttachmentMessageStoreServiceConfiguration.class).run(args);
    }

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(AttachmentMessageStoreServiceConfiguration.class);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy