Skip to content

Commit

Permalink
Added springbootnonwebapp project code
Browse files Browse the repository at this point in the history
  • Loading branch information
hemant committed May 30, 2018
1 parent a0c907b commit f1d4024
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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;
}
}
Original file line number Diff line number Diff line change
@@ -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");
}
}
Original file line number Diff line number Diff line change
@@ -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");
}
}

0 comments on commit f1d4024

Please sign in to comment.