Maven05_私服
1、私服介绍
公司在自己的局域网内搭建自己的远程仓库服务器,称为私服,私服服务器即是公司内 部的 maven 远程仓库。每个员工的电脑上安装 maven 软件并且连接私服服务器,
员工将自 己开发的项目打成 jar 并发布到私服服务器,其它项目组从私服服务器下载所依赖的构件 (jar)。
私服还充当一个代理服务器,当私服上没有 jar 包会从互联网中央仓库自动下载,如下图:
2、搭建私服(这里使用nexus)
Nexus是Maven的仓库管理器,通过nexus可搭建maven仓库,同时nexus还提供了强大的仓库管理功能和构建搜索功能等。
1)下载Nexus
下载地址:http://www.sonatype.org/nexus/archived/
2)安装
解压 nexus-2.12.0-01-bundle.zip,本教程将它解压在 F 盘,进入 bin 目录,cmd 进入 bin 目录,执行 nexus.bat install
安装成功后可以在“服务”中看到nexus服务
3)卸载
cmd 进入 nexus 的 bin 目录,执行:nexus.bat uninstall
查看“服务”列表,nexus服务已经删除
4)启动
方式一:
cmd 进入 bin 目录,执行 nexus.bat start
方式二:
5)查看
查看nexus配置文件conf/nexus.properties
# Jetty section application-port=8081 # nexus 的访问端口配置 application-host=0.0.0.0 # nexus 主机监听配置(不用修改) nexus-webapp=${bundleBasedir}/nexus # nexus 工程目录 nexus-webapp-context-path=/nexus # nexus 的 web 访问路径 # Nexus section nexus-work=${bundleBasedir}/../sonatype-work/nexus # nexus 仓库目录 runtime=${bundleBasedir}/nexus/WEB-INF # nexus 运行程序目录
根据配置文件信息访问私服:
http://localhost:8081/nexus/
6)登录私服
7)仓库的类型
8)nexus仓库的默认位置
在 sonatype-work 目录中
9)私服仓库介绍
3、将项目发布到私服
1)需求介绍
企业中多个团队协作开发通常会将一些公用的组件、开发模块等发布到私服供其它团队 或模块开发人员使用。
本例子假设多团队分别开发 ssm_dao、ssm_service、ssm_web,某个团队开发完在 ssm_dao 会将 ssm_dao 发布到私服供 ssm_service 团队使用,本例子会将 ssm_dao 工程打成 jar 包发布到私服。
2)配置
第一步:
需要在客户端,即开发dao模块和service模块的电脑,在上面配置maven环境,并修改setting.xml文件,配置连接私服的用户名和密码
此用户名和密码用于私服校验,因为私服需要知道上传的账号和密码,是否和私服中一致。
<server> <id>releases</id> <username>admin</username> <password>admin123</password> </server> <server> <id>snapshots</id> <username>admin</username> <password>admin123</password> </server>
releases 连接发布版本项目仓库
snapshots 连接测试版本项目仓库
第二步:
配置项目的pom文件。
配置私服仓库的地址,本公司的自己的 jar 包会上传到私服的宿主仓库,根据工程的版本号决定上传到哪个宿主仓库,如果版本为 release 则上传到私服的 release 仓库,如果版本为 snapshot 则上传到私服的 snapshot 仓库
<distributionManagement> <repository> <id>releases</id> <url>http://localhost:8081/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>snapshots</id> <url>http://localhost:8081/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement>
注意:pom.xml 这里 id和 settings.xml 配置 id对应!
3)测试
将dao打包为jar发布到私服
① 启动nexus
② 对maven-dao执行deploy命令
根据本项目pom.xml中version定义决定发布到哪个仓库,如果version定义为snapshot, 执行 deploy后查看 nexus 的 snapshot仓库,如果 version定义为 release则项目将发布到 nexus 的 release 仓库,本项目将发布到 snapshot 仓库:
4、从私服下载jar包
1)需求
本地仓库不在安装dao模块,dao模块由私服进行下载
2)管理仓库组
nexus中包括很多仓库,hosted中存放的是企业自己发布的jar包及第三方公司的jar包, proxy 中存放的是中央仓库的 jar,为了方便从私服下载 jar 包可以将多个仓库组成一个仓库 组,每个工程需要连接私服的仓库组下载 jar 包。
3)在setting.xml配置仓库
在客户端的 setting.xml 中配置私服的仓库,由于 setting.xml 中没有 repositories 的配置 标签需要使用 profile 定义仓库。
<profile> <!--profile 的 id--> <id>dev</id> <repositories> <repository> <!--仓库 id,repositories 可以配置多个仓库,保证 id 不重复--> <id>nexus</id> <!--仓库地址,即 nexus 仓库组的地址--> <url>http://localhost:8081/nexus/content/groups/public/</url> <!--是否下载 releases 构件--> <releases> <enabled>true</enabled> </releases> <!--是否下载 snapshots 构件--> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <!-- 插件仓库,maven 的运行依赖插件,也需要从私服下载插件 --> <pluginRepository> <!-- 插件仓库的 id 不允许重复,如果重复后边配置会覆盖前边 --> <id>public</id> <name>Public Repositories</name> <url>http://localhost:8081/nexus/content/groups/public/</url> </pluginRepository> </pluginRepositories> </profile>
使用 profile 定义仓库需要激活才可生效。
<activeProfiles> <activeProfile>dev</activeProfile> </activeProfiles>