-
项目管理工具有查看全部
-
3套独立的生命周期:分别是如图查看全部
-
一个完整的项目构建过程包括:清理,编译,测试,打包,集成测试,验证,部署查看全部
-
进入项目根目录 mvn compile(进行项目编译)查看全部
-
1、找到struts的核心包里面的pom.xml文件,多余部分代码删掉 2、<groupId></groupId> groupId的值就是项目的包名 3、<artifactId></artifactId> artifactId的值是模块名(项目名称) 4、<version></version>版本名称查看全部
-
modules 聚合标签查看全部
-
plugins 插件列表查看全部
-
<build> 为构建的行为提供相应的支持查看全部
-
dependencyManagement 依赖管理查看全部
-
依赖列表里的依赖项查看全部
-
pom.xml文件内容查看全部
-
clean compile查看全部
-
clean package install查看全部
-
pom.xml文件的解析: <project> : 根标签,表示约束 <modelVersion> : 指定当前pom的版本 <groupId> : 反写的公司网址+项目名 <artifactId> : 项目名+模块名 <version> : 0.0.0snapshot 第一个0 : 表示大版本号 第二个0 : 表示分支版本号 第三个0 : 表示小版本号 snapshop: 快照 alpha : 内部测试 beta : 公测 Release : 稳定 GA : 正式发布 <packaging> : 压缩方式,默认为jar(jar zip pom) <name> : 项目描述名 <url> : 项目地址 <description> : 项目描述 <developers> : <licenses> : 许可信息 <organization> : <dependencies> : 依赖信息 <dependency> <groupId> : <artifactId> : <version> : <type> : <scope> : <optional> : 设置依赖是否可选 <exclusions> : 排除依赖传递列表 <exclusion> <dependencyManage>: 依赖的管理 <dependencies> <dependency> <build> <plugins>: 插件列表 <groupId> <artifactId> <version> <parent> : 用于子模块中对于父模块的继承 <modules> : 指定多个模块,然后一起编译查看全部
-
第六步:配置tomcat查看全部
举报
0/150
提交
取消