springboot學習筆記(二)
阿新 • • 發佈:2018-12-13
我的第一個springboot程式
1.進入spring官網,spring.io
2.下載完之後,匯入STS
3.匯入成功之後
執行SpringbootDemoApplication.java即可啟動springboot專案
出現以下介面代表啟動成功
4.測試
application.properties檔案中可以指定tomcat埠,我這裡是server.port=8080
建立一個HelloWorldController.java
package com.example.SpringbootDemo.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class HelloWorldController { @RequestMapping("helloworld") @ResponseBody public String helloworld() { return "helloworld;hello springboot"; } }
啟動springboot,輸入localhost:8080\helloworld,啟動chen
自此,我的第一個springboot程式執行成功!