初学Spring Boot遇到Whitelabel Error Page的解决办法

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

/**
 * @author 杨靖罡
 * @date 2017年11月16日
 * @purpose 
 */
@Controller

public class HelloSpringBootController {
	@RequestMapping("/hello")
	public String hello(){
        return "Hello, SpringBoot!";
    }
	
}

W

@Controller注解的问题

  这种情况下不适合使用controller注解,应该将@Controller换成@RestController 此时就可以正常在页面打印出Hello,SpringBoot!

这里的情况是在没有页面的情况下遇到的问题,若有html/jsp时遇到Whitelable Error Page 则是模块的问题,去点击寻找答案。



你可能感兴趣的:(学习阶段)