본문 바로가기
Back-end/Spring

[Spring] Spring Boot 동작 방법

by 발담그는블로그 2023. 12. 31.

Spring Boot 동작 방법

 

출처: 인프런 스프링 입문

1. 웹 브라우저 주소창에 localhost:8080/hello 주소 입력

2. 스프링에 내장되어 있는 내장 톰켓 서버가 스프링에게 전달

3. 스프링에서 '/hello'로 매핑(@GetMapping) 되어 있는 html 찾음 

   1) main > resources > template > hello.html

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Hello</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="'안녕하세요. ' + ${data}" >안녕하세요. 손님</p>
</body>
</html>

   2) main > java > controller > HelloController.java (@GetMapping)

package hello.hellospring.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class HelloController {
    @GetMapping("hello")
    public String hello(Model model) {
        model.addAttribute("data", "hello");
        return "hello";
    }
}
반응형

'Back-end > Spring' 카테고리의 다른 글

[Spring] Build 방법  (0) 2024.01.01