Browse Source

verify Fixed spring's json test

Mike Smith 11 years ago
parent
commit
6a0f01eaa9

+ 1 - 1
spring/src/main/java/com/techempower/spring/web/HelloController.java

@@ -8,7 +8,7 @@ final class HelloController {
 
     @RequestMapping(value = "/json", produces = "application/json")
     Message json() {
-        return new Message("Hello, world");
+        return new Message("Hello, World!");
     }
 
     @RequestMapping(value = "/plaintext", produces = "text/plain")