Removed the controller
Based on the editor comments in the post.
This commit is contained in:
parent
1395211756
commit
98d37d0f8c
|
@ -1,20 +0,0 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue