91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot場景啟動器怎么用

發布時間:2021-09-23 11:37:26 來源:億速云 閱讀:153 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關springboot場景啟動器怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

為什么springboot不需要我們去配置那么繁瑣的東西?

我們直接看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>  <groupId>com.gong</groupId>  <artifactId>myspringboot</artifactId>  <version>1.0-SNAPSHOT</version>  <parent>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-parent</artifactId>    <version>1.5.9.RELEASE</version>  </parent>  <dependencies>    <!--引入springboot的web支持,幫你封裝好了很多個依賴-->    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-web</artifactId>    </dependency>  </dependencies>  <build>    <plugins>      <plugin>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-maven-plugin</artifactId>      </plugin>    </plugins>  </build></project>

首先看spring-boot-starter-parent,spring-boot-start就是場景啟動器,這是所有項目的父項目,我們ctrl+鼠標左鍵點進去:

新文件的開頭部分:

<parent>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-dependencies</artifactId>    <version>1.5.9.RELEASE</version>    <relativePath>../../spring-boot-dependencies</relativePath>  </parent>

它的父項目是spring-boot-dependencies,用于管理依賴包的版本號。也就是說spring-boot-start-parent是版本仲裁中心。

再來看spring-boot-starter-web,我們來查看其中有什么:

<?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-starters</artifactId>    <version>1.5.9.RELEASE</version>  </parent>  <artifactId>spring-boot-starter-web</artifactId>  <name>Spring Boot Web Starter</name>  <description>Starter for building web, including RESTful, applications using Spring    MVC. Uses Tomcat as the default embedded container</description>  <url>http://projects.spring.io/spring-boot/</url>  <organization>    <name>Pivotal Software, Inc.</name>    <url>http://www.spring.io</url>  </organization>  <properties>    <main.basedir>${basedir}/../..</main.basedir>  </properties>  <dependencies>    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter</artifactId>    </dependency>    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-tomcat</artifactId>    </dependency>    <dependency>      <groupId>org.hibernate</groupId>      <artifactId>hibernate-validator</artifactId>    </dependency>    <dependency>      <groupId>com.fasterxml.jackson.core</groupId>      <artifactId>jackson-databind</artifactId>    </dependency>    <dependency>      <groupId>org.springframework</groupId>      <artifactId>spring-web</artifactId>    </dependency>    <dependency>      <groupId>org.springframework</groupId>      <artifactId>spring-webmvc</artifactId>    </dependency>  </dependencies></project>

這里面才是幫我們導入了真正所需的依賴包。

springboot還有許多場景啟動器,例如AOP、郵件開發等等。我們只需要在項目里面引用這些starter,這些場景的相關依賴包就會自動導入出來。

關于“springboot場景啟動器怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荃湾区| 鹤峰县| 微山县| 鲁山县| 紫金县| 罗城| 隆林| 周至县| 纳雍县| 措勤县| 花垣县| 南昌市| 赞皇县| 砚山县| 枣阳市| 漳浦县| 张掖市| 扬州市| 金平| 延吉市| 新绛县| 资兴市| 基隆市| 石台县| 古蔺县| 中卫市| 澳门| 永德县| 基隆市| 正宁县| 大兴区| 突泉县| 正蓝旗| 潼关县| 新乡市| 芦溪县| 应用必备| 乃东县| 金寨县| 阜城县| 安岳县|