无法从浏览器访问我的Spring Boot应用程序

时间:2016-11-14 11:28:32

标签: spring spring-boot

package com.example;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class TrackingManagementSystemApplication {

    public static void main(String[] args) {
        SpringApplication.run(TrackingManagementSystemApplication.class, args);
    }

    @RequestMapping("/hello")
    public String sayHello(){
        return "Hello";
    }
}

我使用 mvn spring-boot:run 命令运行上述应用程序它正在部署成功,但是当我尝试从浏览器访问它时,它会抛出Http 404异常。 我想从任何网络浏览器访问它。

谢谢

0 个答案:

没有答案