Skip to content

Commit

Permalink
홈 화면 컨트롤러
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoochanhong committed Mar 20, 2023
1 parent c8207e1 commit 14d8f73
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.example.MemberManagementExample.controller;

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

@Controller
public class HomeController {
@GetMapping("/")
public String Home(){
return "home";
}
}

0 comments on commit 14d8f73

Please sign in to comment.