如何創(chuàng)建一個(gè)Spring Boot項(xiàng)目?這里使用maven來(lái)進(jìn)行依賴管理,根據(jù)常用的IDE,可以使用IDEA、Eclipse、或者訪問官方網(wǎng)站搭建。
創(chuàng)新互聯(lián)公司是一家專業(yè)從事成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、成都外貿(mào)網(wǎng)站建設(shè)公司、網(wǎng)頁(yè)設(shè)計(jì)的品牌網(wǎng)絡(luò)公司。如今是成都地區(qū)具影響力的網(wǎng)站設(shè)計(jì)公司,作為專業(yè)的成都網(wǎng)站建設(shè)公司,創(chuàng)新互聯(lián)公司依托強(qiáng)大的技術(shù)實(shí)力、以及多年的網(wǎng)站運(yùn)營(yíng)經(jīng)驗(yàn),為您提供專業(yè)的成都網(wǎng)站建設(shè)、營(yíng)銷型網(wǎng)站建設(shè)及網(wǎng)站設(shè)計(jì)開發(fā)服務(wù)!
項(xiàng)目搭建環(huán)境準(zhǔn)備
JDK:1.8MAVEN:3.6.3
使用IDEA搭建Spring Boot項(xiàng)目
打開IDEA,選擇File -- > New --> Project ,然后選擇Spring Initializr,點(diǎn)擊Next
輸入Group --> Artifact --> Next,其他可以不用修改。
選擇Spring Boot版本,此處選擇最新版2.2.4,根據(jù)需要的模塊選擇不同的starter,選擇Web --> Spring Web --> Next
設(shè)置項(xiàng)目名稱,可不設(shè)置,然后Finish。
等待依賴下載
使用Eclispe搭建Spring Boot項(xiàng)目
創(chuàng)建Spring Boot項(xiàng)目官方推薦工具Spring Suite Tools,其實(shí)是Eclipse的定制版本,下載地址:https://spring.io/tools,簡(jiǎn)稱sts
打開sts,F(xiàn)ile -- > New --> Spring Start Project ,輸入Name --> Group --> Artifact
選擇2.2.4版本,Web -- > Spring Web --> Finish
等待項(xiàng)目依賴導(dǎo)入
訪問官方網(wǎng)站搭建Spring Boot項(xiàng)目
訪問https://start.spring.io/,輸入Group -- > Artifact
輸入Options,Name -->Description -->Package name --> Packaging --> Java
選擇需要的模塊Dependencies,這里依舊選擇Web --> Spring Web為例
點(diǎn)擊Generate,會(huì)自動(dòng)下載一個(gè)壓縮包,解壓導(dǎo)入IDE
啟動(dòng)SpringBoot項(xiàng)目
依賴加載完成在IDEA中看到如下目錄結(jié)構(gòu),Eclispe中的就不做展示,目錄結(jié)構(gòu)類似
查看pom.xml文件,已經(jīng)引入了我們勾選的相關(guān)依賴
org.springframework.boot spring-boot-starter-web
還有一個(gè)默認(rèn)創(chuàng)建好的項(xiàng)目啟動(dòng)類
此時(shí)我們創(chuàng)建一個(gè)Controller
package com.demo.springboot.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class LoginController { @RequestMapping("hello") public String login(){ return "Hello World"; } }
運(yùn)行啟動(dòng)類,Run --> SpringbootApplication,啟動(dòng)完成
打開瀏覽器訪問http://localhost:8080/hello,可以看到
到此SpringBoot項(xiàng)目創(chuàng)建完成,需要其他相關(guān)模塊可在pom.xml引入。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。