新手上路遇到的Whitelabel Error Page解決方案


新手上路遇到的Whitelabel Error Page解決方案

代碼:

package com.example.demo.web;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
    @RequestMapping("/hello")
    public String hello() {
        return "Hello Spring Boot!";
    }
}

訪問localhost:8080/hello

原因:程序只加載Application.java所在包及其子包下的內容

把web包移動到如上位置,再次訪問

成功!


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM