idea2022 使用 gradle 创建多模块 springboot工程
时间: 2024-02-04 16:04:30 浏览: 152
好的,关于使用 Gradle 创建多模块 Spring Boot 工程的方法,可以按照以下步骤操作:
1. 创建 Gradle 项目
在 IDEA 中创建一个 Gradle 项目,选择 Kotlin 或者 Java 作为编程语言,选择 Gradle 作为项目类型,然后点击下一步。
2. 创建多模块工程
在项目创建完成后,可以在项目根目录下创建一个 settings.gradle 文件,然后在其中定义多模块工程的名称,例如:
```
rootProject.name = 'my-spring-boot-project'
include 'my-spring-boot-project-core'
include 'my-spring-boot-project-web'
```
这里我们定义了两个子模块,即 my-spring-boot-project-core 和 my-spring-boot-project-web。
3. 配置子模块
在每个子模块的 build.gradle 文件中,添加 Spring Boot 插件和其他必要的依赖,例如:
```
plugins {
id 'org.springframework.boot' version '2.6.0'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
kotlin("jvm") version "1.5.31"
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
// 其他依赖
}
```
4. 配置子模块之间的依赖关系
在每个子模块的 build.gradle 文件中,可以添加对其他子模块的依赖,例如:
```
dependencies {
implementation project(':my-spring-boot-project-core')
}
```
这里我们在 my-spring-boot-project-web 子模块中添加了对 my-spring-boot-project-core 子模块的依赖。
5. 运行 Spring Boot 应用
在每个子模块中,都可以创建一个 Application 类来启动 Spring Boot 应用,例如:
```
@SpringBootApplication
class MySpringBootProjectApplication
fun main(args: Array<String>) {
runApplication<MySpringBootProjectApplication>(*args)
}
```
然后在每个子模块的 build.gradle 文件中,添加运行 Spring Boot 应用的任务,例如:
```
tasks.named("bootRun") {
dependsOn(":my-spring-boot-project-core:build")
classpath = sourceSets.main.get().runtimeClasspath
}
```
这里我们定义了一个 bootRun 任务,它依赖于 my-spring-boot-project-core 子模块的 build 任务,然后设置 classpath。
6. 运行多模块 Spring Boot 应用
最后,在项目根目录下运行以下命令,即可启动多模块 Spring Boot 应用:
```
./gradlew :my-spring-boot-project-web:bootRun
```
这里我们启动了 my-spring-boot-project-web 子模块的 Spring Boot 应用。
阅读全文