【maven】通过profiles实现:怎样激活某个仓库、同时加载多个profile、不同环境加载不同依赖jar

Maven中的profile是一组可选的配置,可以用来设置或者覆盖配置默认值。有了profile,你就可以为不同的环境定制构建。

一. 基本用法

profile可以在pom.xml中和maven的setting.xml文件中配置,如下:

<settings>
  <profiles>
    <profile>
      <id>nexus</id>
      <repositories>
        <repository>
          <id>my-repo</id>
          <url>https://example.com/maven-repo</url>
        </repository>
      </repositories>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>nexus</activeProfile>
  </activeProfiles>
</settings>

在上述示例中,我们定义了一个名为"nexus"的profile,并在其中设置了一个名为"my-repo"的Maven仓库。该仓库的URL为"https://example.com/maven-repo"。
 

仓库激活:

通过将activeProfile元素设置为"nexus",我们激活了这个profile,这意味着Maven会在解析和下载依赖项时搜索并使用该仓库。

 

二. 仓库激活方式

1. 使用activeProfile激活

如上,通过activeProfile标签进行激活,比如在使用idea进行项目打包时,会使用对应id的仓库进行依赖下载

  <activeProfiles>
    <activeProfile>nexus</activeProfile>
  </activeProfiles>

如下图:idea中也能看到我们添加和激活的profile,

当然我们可以激活多个profile,对于idea来说同时选中你想要的profile就行
在这里插入图片描述

 

2. 使用-P参数激活

可以通过使用-P参数显示的指定当前激活的profile。

同时也可以指定多个profile,profile之间用逗号隔开

mvn clean install -Pnexus
mvn clean install -P nexus
mvn clean install -Pnexus,rat

 

3. 使用-P参数不激活

当项目使用settings.xml中激活的profile,但是在某些场景下又不想它处于激活状态。

mvn clean install -P !rat

 

三. 查看激活的仓库

在某一个项目下执行,比如我在linkis这个项目的父级目录下执行

mvn help:active-profiles

得到如下结果

每个模块都会展示激活的profile,这里看到的是linkis-dist模块下激活的profile

。。。
Active Profiles for Project 'org.apache.linkis:linkis-dist:pom:1.3.2':

The following profiles are active:

 - nexus (source: external)

 

四. 不同环境依赖不同版本的jar

通过profile可以解决,在项目开发中例如:生产环境依赖的hadoop版本是2.7.2U1,poc环境依赖的hadoop版本是官方的2.7.2版本。

<project ... >
	<properties>
	    <hadoop.version>1.0.0.RELEASE</hadoop.version>
	</properties>
	<dependencies>
        <groupId>org.apache.hadoop</groupId>
  		<artifactId>hadoop-mapreduce-client-core</artifactId>
        <version>2.7.2U1</version>
	</dependencies>
	<profiles>
    	<profile>
        	<id>test</id>
        	<properties>
            	<hadoop.version>2.7.2</hadoop.version>
        	</properties>
        	<!-- 激活这个profile 会额外加载这个插件>
			<plugins>
    			<plugin>
        			<groupId>org.apache.maven.plugins</groupId>
        			<artifactId>maven-source-plugin</artifactId>
        			<version>2.2.1</version>
        			<executions>
            			<execution>
                			<phase>package</phase>
                			<goals>
                    			<goal>jar-no-fork</goal>
                			</goals>
            			</execution>
        			</executions>
    			</plugin>
			</plugins>
    	</profile>
	</profiles>
</project>

 
 

注意:

如果你使用了镜像设置,Maven会首先尝试从镜像仓库下载依赖项。如果镜像仓库中没有所需的依赖项,则会根据配置的repositories元素查找其他仓库。
 
通过配置profiles和repositories元素,你可以根据项目的要求加载特定的仓库,并控制Maven从哪里获取依赖项。

 

参考:
https://blog.csdn.net/Mr_rain/article/details/100138017
chat-gpt3.5

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
在 Spring Cloud 项目中,可以通过 Maven Profiles 和 Spring Profiles实现不同环境中使用不同jar 依赖。 1. Maven Profiles 在 pom.xml 中,可以定义多个 Maven Profiles,每个 Profile 对应一个环境,如开发环境、测试环境和生产环境等。在每个 Profile 中,可以定义不同依赖,如下所示: ``` <profiles> <profile> <id>dev</id> <dependencies> <dependency> <groupId>com.example</groupId> <artifactId>example-dev</artifactId> <version>1.0.0</version> </dependency> </dependencies> </profile> <profile> <id>prod</id> <dependencies> <dependency> <groupId>com.example</groupId> <artifactId>example-prod</artifactId> <version>1.0.0</version> </dependency> </dependencies> </profile> </profiles> ``` 在使用 Maven 构建时,可以通过指定 Profile 来选择不同依赖。例如,在开发环境中使用如下命令: ``` mvn clean package -Pdev ``` 2. Spring Profiles 在 Spring Boot 项目中,可以使用 Spring Profiles 来定义不同环境,并在不同环境中使用不同依赖。例如,在 application.yml 文件中定义两个 Profile,分别为开发环境和生产环境: ``` spring: profiles: active: dev --- spring: profiles: dev dependencies: - name: example-dev version: 1.0.0 --- spring: profiles: prod dependencies: - name: example-prod version: 1.0.0 ``` 在不同环境中使用不同依赖时,可以使用 Spring Boot 提供的 `@Profile` 注解,如下所示: ``` @Service @Profile("dev") public class ExampleServiceDevImpl implements ExampleService { // ... } @Service @Profile("prod") public class ExampleServiceProdImpl implements ExampleService { // ... } ``` 这样,在不同环境中启动应用程序时,Spring 会根据当前的 Profile 来选择合适的实现
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

roman_日积跬步-终至千里

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值