搭建springboot項目
阿新 • • 發佈:2019-03-21
pri ann web color map imp 一個 org 項目
現在,更新我的第一篇博客,主要是為了記錄下自己學習的過程,方便今後回顧
今天的主題是搭建一個springboot項目,我們使用的工具是idea
新建springboot項目
如圖,新建一個springboot項目
主程序代碼
package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplicationpublic class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } }
controller示例代碼
package com.example.demo.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestControllerpublic class HelloWorldController { @RequestMapping("/hello") public String index(){ return "Hello World!"; } }
啟動成功
這樣,項目啟動成功
在瀏覽器輸入http://localhost:8080/hello就可以訪問了
成功!
天道酬勤,與君共勉
搭建springboot項目