spring boot項(xiàng)目快速構(gòu)建的全步驟
1. 問(wèn)題描述
springboot的面世,成為Java開(kāi)發(fā)者的一大福音,大大提升了開(kāi)發(fā)的效率,其實(shí)springboot只是在maven的基礎(chǔ)上,對(duì)已有的maven gav進(jìn)行了封裝而已,今天用最簡(jiǎn)單的代碼快速入門(mén)springboot。
2. 解決方案
強(qiáng)烈推薦大家使用Idea的付費(fèi)版(破解感謝下藍(lán)宇),Idea對(duì)maven、git等插件支持的更加好。
使用idea自帶的spring Initializr(實(shí)際調(diào)用的是springboot的官網(wǎng)上的initializr),快速新建springboot項(xiàng)目。
2.1 新建Springboot項(xiàng)目
(1)file->new->project

(2)點(diǎn)擊next(第一個(gè))
創(chuàng)建springboot項(xiàng)目(因?yàn)檫B接的國(guó)外的網(wǎng)站,next有時(shí)會(huì)幾秒的延遲),將兩個(gè)值改成自己的配置,Group:com.laowang ,Artifact:sptest,其他可以不用動(dòng),點(diǎn)擊ok

(3)點(diǎn)擊next(第二個(gè))
選擇web-》spring web starter

(4)點(diǎn)擊next(第三個(gè))
不用做修改,直接finish

新建springboot項(xiàng)目已經(jīng)完成。
2.2 springboot默認(rèn)生成三個(gè)文件
默認(rèn)生成的三個(gè)文件
2.2.1. pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.laowang</groupId>
<artifactId>sptest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>sptest</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<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>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
重點(diǎn)就一個(gè)gav:spring-boot-starter-web,其他可以刪除。
2.2.2 application.properties
該文件默認(rèn)為空,springboot的默認(rèn)啟動(dòng)端口號(hào):8080,可以在改文件修改。
2.2.3 啟動(dòng)類文件(SptestApplication.java)
package com.laowang.sptest;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SptestApplication {
public static void main(String[] args) {
SpringApplication.run(SptestApplication.class, args);
}
}
重點(diǎn)是標(biāo)簽:@SpringBootApplication
2.3 驗(yàn)證springboot
在com.laowang.sptest報(bào)下新建ctroller包,并新建類:HelloController
package com.laowang.sptest.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import java.util.HashMap;
@Controller
public class HelloController {
@RequestMapping("/")
@ResponseBody
public String getHello() {
return "hello";
}
}
執(zhí)行效果:

服務(wù)正常啟動(dòng)。
2.4 重點(diǎn)說(shuō)明
需要說(shuō)明兩點(diǎn):
(1)類文件要放在跟啟動(dòng)類同級(jí)或者下一目錄下,本項(xiàng)目為:com.laowang.sptest包下面。因?yàn)閟pringboot默認(rèn)掃描加載啟動(dòng)類同級(jí)或者下級(jí)目錄的標(biāo)簽類(@RestController,@Service ,@Configuraion,@Component等),假如真需要加載其他目錄的標(biāo)簽類,可以通過(guò)在啟動(dòng)上配置標(biāo)簽@ComponentScan(具體包)來(lái)進(jìn)行掃描加載。
(2)資源文件默認(rèn)放到resources下面,templates默認(rèn)放的是動(dòng)態(tài)文件,比如:html文件,不過(guò)要搭配thymeleaf 使用(pom文件中需新加gav)。
其他也沒(méi)什么了,springboot主要是通過(guò)spring提供的多個(gè)starter和一些默認(rèn)約定,實(shí)現(xiàn)項(xiàng)目的快速搭建。
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。
相關(guān)文章
Java Spring Boot消息服務(wù)萬(wàn)字詳解分析
在實(shí)際項(xiàng)目開(kāi)發(fā)中,有時(shí)需要與其他系統(tǒng)進(jìn)行集成完成相關(guān)業(yè)務(wù)功能,這種情況最原始做法是程序內(nèi)部相互調(diào)用,除此之外,還可以用消息服務(wù)中間件進(jìn)行業(yè)務(wù)處理,用消息服務(wù)中間件處理業(yè)務(wù)能夠提升系統(tǒng)的異步通信和擴(kuò)展解耦能力。Spring Boot對(duì)消息服務(wù)管理提供了非常好的支持2021-10-10
Nacos服務(wù)發(fā)現(xiàn)并發(fā)啟動(dòng)scheduleUpdate定時(shí)任務(wù)的流程分析
這篇文章主要介紹了Nacos服務(wù)發(fā)現(xiàn)并發(fā)啟動(dòng)scheduleUpdate定時(shí)任務(wù),本文結(jié)合實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2023-02-02
SpringBoot調(diào)用WebService接口的實(shí)現(xiàn)示例
本文主要介紹了SpringBoot調(diào)用WebService接口的實(shí)現(xiàn)示例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2025-03-03
Java多線程 BlockingQueue實(shí)現(xiàn)生產(chǎn)者消費(fèi)者模型詳解
這篇文章主要介紹了Java多線程 BlockingQueue實(shí)現(xiàn)生產(chǎn)者消費(fèi)者模型詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-09-09
Mybatis-Plus Wrapper條件構(gòu)造器超詳細(xì)使用教程
接口方法的參數(shù)中,會(huì)出現(xiàn)各種 Wrapper,比如 queryWrapper、updateWrapper 等。Wrapper 的作用就是用于定義各種各樣的條件(where)。所以不管是查詢、更新、刪除都會(huì)用到Wrapper2022-03-03

