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

applauncher.spring.MainConfiguration Maven / Gradle / Ivy

The newest version!
package applauncher.spring;

import io.polyglotted.echoapp.EchoServer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class MainConfiguration {

    @Bean(initMethod = "start", destroyMethod = "stop")
    public EchoServer starter() {
        return new EchoServer();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy