14 lines
288 B
Java
14 lines
288 B
Java
package com.baeldung.thymeleaf.templatedir;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
@Controller
|
|
public class HelloController {
|
|
|
|
@GetMapping("/hello")
|
|
public String sayHello() {
|
|
return "hello";
|
|
}
|
|
}
|