要在Eclipse中創建Spring Boot父子項目,您需要按照以下步驟進行操作:
打開Eclipse,并選擇一個工作空間。
點擊菜單欄中的“File” -> “New” -> “Other”。
在彈出的對話框中,展開“Maven”文件夾,然后選擇“Maven Project”,點擊“Next”。
在下一個對話框中,選擇“Create a simple project (skip archetype selection)”,點擊“Next”。
在“Project”頁面上,輸入一個項目名稱,并選擇一個合適的項目位置。確保勾選上“Create a simple project (skip archetype selection)”選項。
在“Packaging”頁面上,選擇“pom”,這將創建一個Maven父項目。
點擊“Finish”按鈕,完成父項目的創建。
接下來,您需要為父項目添加Spring Boot依賴。在父項目的pom.xml文件中,添加以下行:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.5.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
然后,您可以為子項目創建一個新的模塊。右鍵單擊父項目,選擇“New” -> “Module”。
在“New Project”對話框中,選擇“Maven Module”,點擊“Next”。
在“Module”頁面上,輸入子項目的名稱,并選擇一個合適的項目位置。
在“Packaging”頁面上,選擇“jar”或“war”,具體取決于您的需求。
在“Parent Project”頁面上,選擇父項目,點擊“Finish”。
重復步驟9到13,可以創建多個子項目。
現在,您可以在子項目的pom.xml文件中添加Spring Boot啟動器和其他相關依賴。例如,您可以使用以下行添加Spring Boot Web依賴:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
請注意,以上步驟假設您已經在Eclipse中安裝了Maven插件。如果沒有安裝,請先安裝Maven插件,然后按照步驟操作。