package com.example;


import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String sayHello(String name) {
        System.out.println("Hello, " + name + "!");
        return "Hello, " + name + "!";
    }
}
