從0開始學springboot之啓蒙篇

(why)爲何springboot火遍全世界

  1. springboot 有個好爹springphp

  2. springboot 遺傳了爹的優秀基於是生java

  3. 大神們都在講服務化(service),springboot作服務化再合適不過了web

  4. springboot入門簡單(PS:國內使用thinkphp也是一個道理,快速構建,快速發佈)spring

  5. and so on(功力太淺 哪日突破再補充)thinkphp

(where)從哪下載springboot框架

網上以及官方有一大堆下載springboot的教程,mac brew install方式安裝,ubuntu的apt-get install安裝
windows的安裝包安裝balabala一大堆,我只記錄maven方式的安裝。
下載地址:百度or谷歌一大堆
如下介紹如何使用idea自帶的maven下載springbootapache

  1. 下載IntelLij idea:http://www.jetbrains.com/idea/#chooseYourEdition 請選擇 Ultimate 版本ubuntu

  2. 建立一個maven項目,輸入groupId com.notnull ,ArtifactId community-servicewindows

  3. 輸入project name community-serivcespringboot

  4. 輸入 project location /opt/java/community-service框架

  5. 修改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.notnull</groupId>
      <artifactId>com.notnull.community-service</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <parent>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-parent</artifactId>
          <version>1.0.1.RELEASE</version>
      </parent>
    
      <dependencies>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-web</artifactId>
          </dependency>
      </dependencies>
    </project>

    6.idea將自動下載springboot以及相關依賴jar包

至此,springboot工程已經搭建完畢,下一篇將是一個Hello World

相關文章
相關標籤/搜索