Change home page Web Service endpoint from ping() to description, 'Inline Caching Example'.

This commit is contained in:
John Blum
2019-08-23 00:28:29 -07:00
parent 93c50ba621
commit 1d02bae14b

View File

@@ -38,7 +38,7 @@ public class CalculatorController {
@GetMapping("/")
public String home() {
return ping();
return format("Inline Caching Example");
}
@GetMapping("/ping")