您好,登錄后才能下訂單哦!
IDEA如何進行搭建springBoot?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
1.先在IDEA配置maven
maven下載和配置可以看https://blog.csdn.net/qq_41150890/article/details/108086369
2.新建maven項目
3.在pom.xml加入springBoot依賴
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
4.創建類(用來啟動項目),寫如下代碼
package xiaoliu; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SpringApplicationTest { public static void main(String[] args) { //啟動spring應用 SpringApplication.run(SpringApplicationTest.class,args); } }
5.創建Controller 寫代碼如下
5.運行
6.訪問項目
在頁面中輸入http://localhost:8080/hello 即可訪問項目。
可以用idea 打包 成jar
然后用 java -jar hello.jar 運行springboot 項目
springboot中已經自帶了tomcat,所以可以沒有tomcat環境
關于IDEA如何進行搭建springBoot問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。