20 lines
655 B
Java
20 lines
655 B
Java
package com.baeldung;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import java.util.concurrent.atomic.AtomicLong;
|
|
|
|
@RestController
|
|
public class GreetingController {
|
|
|
|
private static final String template = "Hello Docker, %s!";
|
|
private final AtomicLong counter = new AtomicLong();
|
|
|
|
@GetMapping("/greeting")
|
|
public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name) {
|
|
return new Greeting(counter.incrementAndGet(),
|
|
String.format(template, name));
|
|
}
|
|
} |