spring boot的hello world小实验
生活随笔
收集整理的這篇文章主要介紹了
spring boot的hello world小实验
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?
?
?
然后一路回車,得到文件夾目錄如下:
?
等待maven下載依賴結束後,
這是因為自動生成的項目中只有啟動器,沒有控制器。下面我們添加控制器:
根據[1]中的筆記:
啟動類和控制器可以位于同一個包下,或啟動類位于控制器上一級包下。
但是啟動類不能放在控制器的平級包或子包下。
原因:啟動器啟動時從當前包下以及子包下查找使用的組件。(上級包或不同包的話無法找到)
?
選擇Run->Run "DemoApplication"
然后瀏覽器打開:
127.0.0.1:8080/helloworld 如下:
https://www.cnblogs.com/joker-dj/p/12657519.html
#############################附錄#######################################################
控制器完整代碼:
package com.example.demo.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController;@RestController public class controller {@RequestMapping("/helloworld")public String Helloword(){return "helloworld";} }啟動器完整代碼:
package com.example.demo;import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplication public class DemoApplication {public static void main(String[] args) {SpringApplication.run(DemoApplication.class, args);}}##################
Reference:
[1]Spring Boot創建一個HelloWorld項目
總結
以上是生活随笔為你收集整理的spring boot的hello world小实验的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mac上Android反编译工具apkt
- 下一篇: VSCode 翻译插件一览表