기본 골격
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.eactive.httpmockserver.home;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
|
||||
@Controller
|
||||
public class HomeController {
|
||||
|
||||
@GetMapping("/")
|
||||
public String home() {
|
||||
return "index";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user