Skip to content

Commit 8a8f1f7

Browse files
authored
Merge pull request #4 from ksgnextuple/development
Added Print Statement
2 parents 4afef17 + eae1642 commit 8a8f1f7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

initial/src/main/java/com/example/restservice/GreetingController.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public class GreetingController {
1515

1616
@GetMapping("/greeting")
1717
public Greeting greeting(@RequestParam(value = "name", defaultValue = "World") String name) {
18+
System.out.println("Hello");
1819
return new Greeting(counter.incrementAndGet(), String.format(template, name));
1920
}
2021

0 commit comments

Comments
 (0)