io.fabric8.PipelineTestProjectApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pipeline-test-project Show documentation
Show all versions of pipeline-test-project Show documentation
Demo project for Spring Boot
package io.fabric8;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
@EnableAutoConfiguration
public class PipelineTestProjectApplication {
@RequestMapping("/")
String home() {
return WebPageMessageGenerator.getWelcomeMessage();
}
public static void main(String[] args) {
SpringApplication.run(PipelineTestProjectApplication.class, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy