作者:好久不见.Mr | 来源:互联网 | 2024-10-19 18:57
篇首语:本文由编程笔记#小编为大家整理,主要介绍了Mavent——学Java不会Maven,怎么行相关的知识,希望对你有一定的参考价值。
Maven简介
Ubuntu安装Maven
Maven是apache下的一个开源项目,是纯java开发,并且只是用来管理java项目的
Maven的优点是:节省空间(将所有需要的jar包,全部存到本地仓库)
Maven中的文件,我们只需要关注settings.xml文件。
配置本地仓库的位置:
1、Maven的常用命令
clean 清除已经编译好的文件
Compile 编译了主目录的文件
Test 编译并运行了test目录的代码
Package 打包
Install 就是把项目发布到本地仓库
tomcat:run 一键启动(当配置了使用Tomcat7插件的时候,使用tomcat7:run启动)
2、新建项目
猛击这里
环境变量注意事项:
目录结构
3、导入包
为了避免:
已经出现了,解决:ex
4、引入插件
HelloWorld
org.apache.maven.plugins
maven-compiler-plugin
3.5.1
1.7
UTF-8
org.apache.tomcat.maven
tomcat7-maven-plugin
2.2
5、依赖传递
只添加了一个struts2-core依赖,发现项目中出现了很多jar,这种情况 叫 依赖传递
6、解决依赖冲突
1、第一声明优先原则
org.springframework
spring-context
4.2.4.RELEASE
org.apache.struts
struts2-spring-plugin
2.3.24
2、路径近者优先原则
org.springframework
spring-context
4.2.4.RELEASE
org.apache.struts
struts2-spring-plugin
2.3.24
org.springframework
spring-beans
4.2.4.RELEASE
3、排除原则
org.apache.struts
struts2-spring-plugin
2.3.24
org.springframework
spring-beans
org.springframework
spring-context
4.2.4.RELEASE
7、使用Maven搭建SSH项目
8、模块拆分
IDEA报错-Dmaven.multiModuleProjectDirectory system property is not set. Check $M2_HOME environment variable and mvn script match.[ERROR] Maven execution terminated abnormally (exit code 1)
一可能是jdk版本不匹配,二是在maven的runner选项上设置maven vm options:-Dmaven.multiModuleProjectDirectory=$M2_HOME