1:Hello world
生活随笔
收集整理的這篇文章主要介紹了
1:Hello world
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 創建springboot,打包,運行
- 1:編寫controller
- 1:Springboot的POM.XML文件
- 1:parent
- 2:元數據信息
- 3:依賴信息
- 4:build
- 2:maven項目打包
- 3:運行 jar包
創建springboot,打包,運行
1:編寫controller
1:Springboot的POM.XML文件
1:parent
<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.4.2</version><relativePath/> <!-- lookup parent from repository --></parent>- 繼承了spring=boot-starter-parent的依賴管理,控制版本和打包的內容
- 內容有版本號碼
2:元數據信息
<groupId>com.example</groupId><artifactId>demo</artifactId><version>0.0.1-SNAPSHOT</version><name>demo</name><description>Demo project for Spring Boot</description>- groupId
- artifactId
- version
- name
- descript
3:依賴信息
<dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency>- web 和test
4:build
<build> <!-- 打包jar包插件--><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin></plugins></build>- 構建配置文件,默認使用spring-boot-maven-plugin
2:maven項目打包
- 點開IDEA右邊的maven符號
- 點開 Lifecycle
- 雙擊 package
- 在target中就可以看到jar包
3:運行 jar包
- 在當前的文件夾 按住shirt+鼠標右擊
- 打開powershell
- java -jar hello
- 然后在瀏覽器訪問 localhost:8080/hello
總結
以上是生活随笔為你收集整理的1:Hello world的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Ubuntu sudo apt-get
- 下一篇: 2:IDEA生成springboot项目