Added springbootnonwebapp project code

This commit is contained in:
hemant 2018-05-30 20:56:16 +05:30
parent a0c907ba7c
commit f1d4024a59
3 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package com.baeldung.springbootnonwebapp;
import java.time.LocalDate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* Controller exposing rest web services
* @author hemant
*
*/
@RestController
public class HelloController {
@RequestMapping("/")
public LocalDate getMinLocalDate() {
return LocalDate.MIN;
}
}

View File

@ -0,0 +1,23 @@
package com.baeldung.springbootnonwebapp;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;
@Component
public class Runner implements CommandLineRunner {
private static final Logger LOG = LoggerFactory.getLogger(Runner.class);
/**
* This method will be executed after the application context is loaded and
* right before the Spring Application main method is completed.
*/
@Override
public void run(String... args) throws Exception {
LOG.info("START : command line runner");
LOG.info("EXECUTING : command line runner");
LOG.info("END : command line runner");
}
}

View File

@ -0,0 +1,21 @@
package com.baeldung.springbootnonwebapp;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringBootNonWebappApplication {
private static final Logger LOG = LoggerFactory.getLogger(SpringBootNonWebappApplication.class);
public static void main(String[] args) {
LOG.info("STARTING THE APPLICATION");
SpringApplication app = new SpringApplication(SpringBootNonWebappApplication.class);
// This line of code, disables the web app setting
app.setWebEnvironment(false);
app.run(args);
LOG.info("APPLICATION STARTED");
}
}