左邊是的檔案存放的地方,之後建立的Class,Interface,都會放在左邊的資料夾底下,可以注意到是存放在:src/main/java/com.example.springboottutorial
你的專案名稱底下
-> 按右上角的箭頭跑一下專案
可以看到下面有一行報錯,上面寫沒有連結到資料庫,所以他會有錯誤,這邊就要講一下之前提到的Maven了
-> 點選左邊的pom.xml
檔案,把spring-boot-starter-data-jpa
註解掉,不能註解一個,要從dependency
開始到dependency
結束
-> 對照下面這兩段程式碼
<dependency>-->
<groupId>org.springframework.boot</groupId>-->
<artifactId>spring-boot-starter-data-jpa</artifactId>-->
</dependency>-->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
-> 接者空白處滑鼠右鍵,選擇Maven,然後選Reload project,再按右上角箭頭執行
-> 看到Started SpringBootTutorialApplication in 1.618 seconds (process running for 2.236)
代表SpringBoot有成功啟用了