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이 나오는 것을 확인가능하다.
'강의 따라하기 > member2' 카테고리의 다른 글
05. 회원가입_DB 연동하기 (1) | 2023.12.28 |
---|---|
05. 회원가입_입력한 정보 컨트롤러로 전달하기 (0) | 2023.12.28 |
05. 회원가입_회원가입 페이지 요청하기 (0) | 2023.12.28 |
스프링부트 - 회원프로젝트 (0) | 2023.12.28 |
spring boot - member, board (0) | 2023.05.07 |
블로그의 정보
Hello 춘기's world
볼빵빵오춘기