Files
spring-soap/spring-boot/src/main/java/com/baeldung/springbootnonwebapp/HelloController.java
2018-05-30 20:56:16 +05:30

21 lines
406 B
Java

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;
}
}