Hello

04. 기본주소 요청하기

by 볼빵빵오춘기

HomeController

src > main > java > com.example.member2 > HomeController 클래스 생성 후 아래 코드 작성

더보기
package com.example.member2.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class HomeController {

    @GetMapping("/")
    public String home(){
        return "index";
    }
}

 

index.html

resources > templates 밑에 하위 index.html파일 생성 후 아래 코드 작성

더보기
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>index</title>
</head>
<body>
    <h2>Hello Spring boot!!</h2>
</body>
</html>

 

결과 확인

위에 HomeController.java와 index.html을 작성하였다면 프로젝트를 실행 후 

http://localhost:8080/ 을 브라우저에 url에 입력한다. 

브라우저 화면에 index.html이 나오는 것을 확인가능하다. 

블로그의 정보

Hello 춘기's world

볼빵빵오춘기

활동하기