package {{context.group}}.{{context.project}}.api.rest.impl; import {{context.group}}.{{context.project}}.api.rest.HelloController; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Component; @Component public class HelloControllerImpl implements HelloController { @Override public ResponseEntity sayHello() { return ResponseEntity.ok("hello world!"); } @Override public ResponseEntity sayHi(String name) { return ResponseEntity.ok("hello " + name +"!"); } }