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 d4643d4cf2
commit 53ac59f28d

View File

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