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异常。 我想从任何网络浏览器访问它。
谢谢