+
80
-

springboot运行Whitelabel Error Page错误怎么办?

springboot运行Whitelabel Error Page错误怎么办?

我的目录是正确的,controller代码如下:

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HelloController {
    @RequestMapping("/hello")
    public String index() {
        return "Hello World1";
    }
}


网友回复

+
0
-

你这少了@ResponseBody,完整如下:

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HelloController {
    @RequestMapping("/hello")
    @ResponseBody
    public String index() {
        return "Hello World1";
    }
}

我知道答案,我要回答