我创建了一个简单的Spring-bootmaven 项目,并添加Tomcat v8.5 server了一个项目。Tomcat 服务器已成功启动,但是在通过http://localhost:8080访问应用程序时 会抛出HTTP Status 404 – Not Found错误。我已经安装了jre 1.8版本。请参考 pom.xml 以获取更多详细信息。
// 猎鹰应用程序.java
package com.qacoder.falcon;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class FalconApplication {
public static void main(String[] args) {
SpringApplication.run(FalconApplication.class, args);
}
}
// 测试控制器.java
package com.qacoder.falcon.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@RequestMapping("/")
public String home() {
return "Spring boot is working!";
}
}
繁华开满天机
慕仙森
PIPIONE
相关分类