pom文件
Posted 一杯清茶and悠悠碧水
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pom文件相关的知识,希望对你有一定的参考价值。
1.父子pom
如果在一个工程中分多个模块,那么会有父子pom。一般子pom中会有配置,指示其依赖的父pom:
<parent>
<groupId>com.xxx</groupId>
<artifactId>xxx</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
而父pom中会指示对应的子模块。配置如下:
<modules>
<module>datacenter-client</module>
<module>datacenter-web</module>
<module>biz-datacenter</module>
<module>datacenter-common</module>
<module>datacenter-service</module>
</modules>
在父pom中会指定所有子模块需要依赖的jar包信息,包括版本信息。子pom中添加依赖的时候,只需要指定groupid、affactid即可。不用版本信息。这样就可以
统一控制整个工程的jar包版本。可以减少冲突的可能。比如如下配置:
父pom:
<dependencies>
<dependency>
<groupId>com.lianlianpay.prophet</groupId>
<artifactId>biz-prophet</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.lianlianpay.prophet</groupId>
<artifactId>prophet-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
子pom:
<dependencies>
<dependency>
<groupId>com.lianlianpay.prophet</groupId>
<artifactId>biz-prophet</artifactId>
</dependency>
<dependency>
<groupId>com.lianlianpay.prophet</groupId>
<artifactId>prophet-common</artifactId>
</dependency>
</dependencies>
以上是关于pom文件的主要内容,如果未能解决你的问题,请参考以下文章
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途