RHSRV-1 - implement basic spring boot
This commit is contained in:
@@ -2,7 +2,10 @@ package wtf.beatrice.releasehive;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class Main {
|
||||
|
||||
private static final Logger LOGGER = LogManager.getLogger(Main.class);
|
||||
@@ -10,5 +13,8 @@ public class Main {
|
||||
public static void main(String[] args) {
|
||||
LOGGER.info("Hello world!");
|
||||
|
||||
LOGGER.info("Initializing Spring Boot");
|
||||
SpringApplication.run(Main.class, args);
|
||||
LOGGER.info("Spring Boot initialized!");
|
||||
}
|
||||
}
|
||||
|
13
src/main/java/wtf/beatrice/releasehive/TryController.java
Normal file
13
src/main/java/wtf/beatrice/releasehive/TryController.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package wtf.beatrice.releasehive;
|
||||
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
public class TryController {
|
||||
|
||||
@GetMapping("/try")
|
||||
public String tryMethod() {
|
||||
return "Hello World!";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user