3月18日java学习笔记
构建工具实战
- Maven核心配置
pom.xml依赖管理:
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.0'
}
repositories {
maven { url 'https://maven.aliyun.com/repository/public' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
}
常用命令:
gradle build # 编译打包
gradle test # 运行测试
gradle bootRun # 启动Spring Boot应用
浙公网安备 33010602011771号