Spring Boot 使用1

SSD1397713787發表於2018-05-11

(1)開啟idea 新建-》spring Iniializr->選擇自己jdk的位置 

選擇spring初始化的網站(預設),有時候網站可能連不上,

-》next等待工程初始化-》寫公司的名字如 com.baidu-》工程名稱-》demo

->next-》選擇web的web-》next-》工程名稱-》工程所在的位置=》finish

(2)請等待工程載入完畢


如果碰到mvn沒有載入完畢

請重新整理maven或者配置maven-》settings。xml

此檔案在


在settings。xml寫入

<mirror>
    <!--This sends everything else to /public -->
    <id>nexus-aliyun</id>
    <mirrorOf>*</mirrorOf>
    <name>Nexus aliyun</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>

阿里雲的maven repository

在pom.xml配置

<repositories>
    <repository>
        <id>nexus-aliyun</id>
        <name>nexus-aliyun</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

然後重新整理maven

直到maven配置不變紅

(3)

在file->settings->plugins->Browser repositories->搜尋lombok-》安裝

lombok可以用註解@Data實現getset方法

(4)


寫好包

resourece下的application。properties刪除,新建一個application.yml檔案

spring:
  datasource:
    username: root
    password: 密碼
    url: jdbc:mysql://127.0.0.1:3306/資料庫名字?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=true
    driver-class-name: com.mysql.jdbc.Driver
  mvc:
    view:
      suffix:
配置yml,必須有格式,否則無法進行編譯

相關文章