Whitelabel Error Page This application has no explicit mapping for error, so you are seeing this as

tech2022-08-02  141

原因: 1、没有加RestController 加上就行

import org.springframework.web.bind.annotation.RestController; @RestController public class UserController { @Autowired UserService userService; @GetMapping(value = "/index") public Object index() { return "adfgaafdga"; } }

2、项目的入口文件位置不对,将入口文件放在com文件夹跟目录下面

最新回复(0)