实现作业上传自动创建文件夹

This commit is contained in:
F嘉阳
2018-02-07 15:28:51 +08:00
parent 62d38ac480
commit 06ba589dfd
8 changed files with 204 additions and 31 deletions

View File

@@ -24,4 +24,19 @@ public class NavController {
public String toHomePage(){
return "/home/home";
}
@GetMapping(value = {"/feedback"})
public String toFeedbackPage(){
return "/home/feedback";
}
@GetMapping(value = {"/about"})
public String toAboutPage(){
return "/home/about";
}
@GetMapping(value = {"/user"})
public String toUserPage(){
return "/home/user";
}
}