Hello World
2026-03-06
Hello World
Welcome to my blog! I'm a programmer learning Next.js, Spring Boot, and building side projects.
Why I started this blog
To document my learning journey and share coding notes...
Code Example
@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello World!";
}
}