为了账号安全,请及时绑定邮箱和手机立即绑定

如何解决Spring Boot应用中的“Whitelabel Error Page”相关问题

如何解决Spring Boot应用中的“Whitelabel Error Page”相关问题

达令说 2023-03-31 15:29:43
我正在尝试执行我的新 Spring Boot 应用程序。前两个类是:import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class UbbioneApplication {    public static void main(String[] args) {        SpringApplication.run(UbbioneApplication.class, args);    }}然后是 servlet Initializer 类import org.springframework.boot.builder.SpringApplicationBuilder;import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;public class ServletInitializer extends SpringBootServletInitializer {    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {        return application.sources(UbbioneApplication.class);    }}但是当我习惯于通过mvn spring-boot:run在控制台中编写来运行我的应用程序时,我会出现以下消息:白标错误页面你能帮我解决这个问题吗?提前致谢。
查看完整描述

1 回答

?
慕村9548890

TA贡献1884条经验 获得超4个赞

我想我有一个答案:


我为我的应用程序创建了一个控制器,并按如下方式更新了我的代码:


import org.springframework.boot.autoconfigure.EnableAutoConfiguration;

import org.springframework.context.annotation.ComponentScan;

import org.springframework.context.annotation.Configuration;


@Configuration

@EnableAutoConfiguration

@ComponentScan(basePackages = {"Name_controller_path"})

public class Application {

    public static void main(String[] args) {

        SpringApplication.run(Application.class, args);

    }

}

然后我的控制器将如下所示:


import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import org.springframework.web.bind.annotation.RestController;


@RestController

public class Appcontroller {


    @RequestMapping(value = "/home", method = RequestMethod.GET)

    String home() {

        return "home";

    }

}

然后使用此路径查看您的执行情况:http://localhost:8080/home



查看完整回答
反对 回复 2023-03-31
  • 1 回答
  • 0 关注
  • 113 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信