设置 web项目 localhost:8080 默认访问接口

阅读 77

2023-01-30


设置 web项目 localhost:8080 默认访问接口

@Controller
@RequestMapping("/")
public class index {
@RequestMapping(value = “/”, method = RequestMethod.GET)
public String index(Model model){
return “login.html”;
}
}

相关推荐

精彩评论(0)

0 0 举报