You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

640 B

MAVEN

作用:

**依赖管理:**一键联网导入jar包

**统一项目结构:**不同编译器结构不同

maven项目基本结构

src:

main:(实际项目资源)

java:(Java源代码目录)

resources:(配置文件目录)

test:(测试项目资源文件)

java:

resources:

pom.xml(项目配置文件)

标准化的项目构建:(跨平台)

通过maven提供的一系列命令快速的完成项目的清理、编译、测试、打包、发布

idea集成maven

配置maven环境
创建maven项目
导入maven项目