大家好,我是冰河~~

最近不少小伙伴想在自己公司的内网搭建一套Maven私服环境,可自己搭建的过程中,或多过少的总会出现一些问题,问我可不可以出一篇如何搭建Maven私服的文章。这不,就有了这篇文章嘛。

好了,其他的不多说了,接下来,我们就一起来搭建Maven私服环境吧!

环境说明

  • 环境:CentOS 6.x~8.0、 JDK8、 Sonatype Nexus、 Maven
  • IP:192.168.50.131
  • root 用户操作

安装Nexus

前提:已安装 JDK8 并配置好了环境变量,小伙伴们自行搭建JDK8环境,这里我就不再赘述了。相信小伙伴们都能够正确搭建JDK8环境。

下载Nexus

下载Nexus(这里,我使用的是:nexus-2.11.2-03-bundle.tar.gz) ,下载地址:http://www.sonatype.org/nexus/go/ ,我们也可以在服务器的命令行输入如下命令下载nexus-2.11.2-03-bundle.tar.gz安装文件。

# wget https://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-2.11.2-03-bundle.tar.gz


解压Nexus

# mkdir nexus
# tar -zxvf nexus-2.11.2-03-bundle.tar.gz -C nexus
# cd nexus
# ls
nexus-2.11.2-03 sonatype-work
(一个 nexus 服务,一个私有库目录)

编辑 Nexus

编辑 Nexus 的 nexus.properties 文件,配置端口和 work 目录信息(保留默认)

# cd nexus-2.11.2-03
# ls
bin conf lib LICENSE.txt logs nexus NOTICE.txt tmp

查看目录结构, jetty 运行

# cd conf
# vi nexus.properties
# Jetty section
application-port=8081
application-host=0.0.0.0
nexus-webapp=${bundleBasedir}/nexus
nexus-webapp-context-path=/nexus
# Nexus section
nexus-work=${bundleBasedir}/../sonatype-work/nexus
runtime=${bundleBasedir}/nexus/WEB-INF

编辑 nexus 脚本,配置 RUN_AS_USER 参数

# vi /usr/local/nexus/nexus-2.11.2-03/bin/nexus
#RUN_AS_USER=

改为:

RUN_AS_USER=root

防火墙中打开 8081 端口

# vi /etc/sysconfig/iptables

添加:

-A INPUT -m state --state NEW -m tcp -p tcp --dport 8081 -j ACCEPT

保存后重启防火墙

# service iptables restart

启动 nexus

# /usr/local/nexus/nexus-2.11.2-03/bin/nexus start
****************************************
WARNING - NOT RECOMMENDED TO RUN AS usr/local
****************************************
Starting Nexus OSS...
Started Nexus OSS.

访问nexus

浏览器中打开:http://192.168.50.131:8081/nexus/

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础

登录nexus

默认用户名admin,默认密码admin123。

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础_02

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_系统架构_03

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_Maven_04

到此, Nexus 已安装完成, 接下来是 Nexus 的配置

Nexus 配置(登录后)

设置管理员邮箱

菜单 Administration/Server 配置邮箱服务地址(如果忘记密码,可以通过该邮箱找回密码)

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_程序员进阶系列_05

设置用户邮箱

给用户配置邮箱地址,方便忘记密码时找回:

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_Maven_06

用户修改密码

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_互联网工程系列_07

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础_08

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_系统架构_09

仓库类型

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_Maven_10

  • group 仓库组:Nexus通过仓库组的概念统一管理多个仓库,这样我们在项目中直接请求仓库组即可请求到仓库组管理的多个仓库;
  • hosted 宿主仓库:主要用于发布内部项目构件或第三方的项目构件 (如购买商业的构件)以及无法从公共仓库获取的构件(如 oracle 的 JDBC 驱动)proxy 代理仓库:代理公共的远程仓库;
  • virtual 虚拟仓库:用于适配 Maven 1;

一般用到的仓库种类是 hosted、 proxy。

Hosted 仓库常用类型说明:

  • releases 内部的模块中 release 模块的发布仓库
  • snapshots 发布内部的 SNAPSHOT 模块的仓库
  • 3rd party 第三方依赖的仓库,这个数据通常是由内部人员自行下载之后发布上去

如果构建的 Maven 项目本地仓库没有对应的依赖包,那么就会去 Nexus 私服去下载,如果Nexus私服也没有此依赖包,就回去远程中央仓库下载依赖,这些中央仓库就是 proxy。Nexus 私服下载成功后再下载至本地 Maven 库供项目引用。

设置 proxy 代理仓库

设置 proxy 代理仓库(Apache Snapshots/Central/Codehaus Snapshots)准许远程下载,如下所示。

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_互联网工程系列_11

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_系统架构_12

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_系统架构_13

Maven 本地库的安装与配置

下载Maven

到链接http://maven.apache.org/download.cgi 下载Maven

配置Maven环境变量

vim /etc/profile

MAVEN_HOME=/usr/local/maven
JAVA_HOME=/usr/local/jdk
CLASS_PATH=$JAVA_HOME/lib
PATH=$JAVA_HOME/bin:$MAVEN_HOME/bin:$PATH
export JAVA_HOME MAVEN_HOME CLASS_PATH PATH

source /etc/profile

配置本地Maven

拷贝Maven的conf目录下的配置文件settings.xml,重命名为settings-lyz.xml,修改配置文件后的内容如下:

 version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>D:/Maven_Repository/.m2/repositorylocalRepository>
<interactiveMode>trueinteractiveMode>
<offline>falseoffline>
<pluginGroups>
<pluginGroup>org.mortbay.jettypluginGroup>
<pluginGroup>org.jenkins-ci.toolspluginGroup>
pluginGroups>


<servers>
<server>
<id>nexus-releasesid>
<username>deploymentusername>
<password>deployment123password>
server>
<server>
<id>nexus-snapshotsid>
<username>deploymentusername>
<password>deployment123password>
server>
servers>

<mirrors>

mirrors>

<profiles>
<profile>
<id>lyzid>
<activation>
<activeByDefault>falseactiveByDefault>
<jdk>1.8jdk>
activation>
<repositories>

<repository>
<id>nexusid>
<url>http://192.168.50.131:8081/nexus/content/groups/public/url>
<releases>
<enabled>trueenabled>
releases>
<snapshots>
<enabled>trueenabled>
snapshots>
repository>
repositories>
<pluginRepositories>

<pluginRepository>
<id>nexusid>
<url>http://192.168.50.131:8081/nexus/content/groups/public/url>
<releases>
<enabled>trueenabled>
releases>
<snapshots>
<enabled>trueenabled>
snapshots>
pluginRepository>
pluginRepositories>
profile>
profiles>


<activeProfiles>
<activeProfile>lyzactiveProfile>
activeProfiles>

settings>

其中,配置文件中的

<localRepository>D:/Maven_Repository/.m2/repositorylocalRepository>

说明本地仓库位于D:/Maven_Repository/.m2/repository目录下。

配置文件中的如下配置项。

<url>http://192.168.50.131:8081/nexus/content/groups/public/url>

与下图中的链接一致:

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础_14

配置Eclipse Maven

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_系统架构_15

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_系统架构_16

配置IDEA Maven

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_程序员进阶系列_17

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_程序员进阶系列_18

项目的构建与发布

首先我们要在项目的pom.xml文件中加入如下内容,将项目构建成的Jar发布到Maven私有仓库

<distributionManagement>
<repository>
<id>nexus-releasesid>
<name>Nexus Release Repositoryname>
<url>http://192.168.50.131:8081/nexus/content/repositories/releases/url>
repository>
<snapshotRepository>
<id>nexus-snapshotsid>
<name>Nexus Snapshot Repositoryname>
<url>http://192.168.50.131:8081/nexus/content/repositories/snapshots/url>
snapshotRepository>
distributionManagement>

配置说明

项目中的pom.xml文件中,如果版本配置如下:

<version>0.0.1-SNAPSHOTversion>

则发布到Maven私有仓库后对应的目录如下:

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_互联网工程系列_19

如果版本配置如下:

<version>0.0.1-RELEASEversion>

则发布到Maven私有仓库后对应的目录如下。

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础_20

完整pom.xml文件的配置如下所示。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0modelVersion>
<groupId>common-utils-mavengroupId>
<artifactId>com.chwl.commonartifactId>
<version>0.0.1-SNAPSHOTversion>
<distributionManagement>
<repository>
<id>nexus-releasesid>
<name>Nexus Release Repositoryname>
<url>http://192.168.50.131:8081/nexus/content/repositories/releases/url>
repository>
<snapshotRepository>
<id>nexus-snapshotsid>
<name>Nexus Snapshot Repositoryname>
<url>http://192.168.50.131:8081/nexus/content/repositories/snapshots/url>
snapshotRepository>
distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
<jdk.version>1.8jdk.version>
properties>
<dependencies>
此处省略....
dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-compiler-pluginartifactId>
<configuration>
<source>${jdk.version}source>
<target>${jdk.version}target>
<encoding>${project.build.sourceEncoding}encoding>
configuration>
plugin>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-source-pluginartifactId>
<version>2.1.2version>
<executions>
<execution>
<id>attach-sourcesid>
<goals>
<goal>jargoal>
goals>
execution>
executions>
plugin>
plugins>
build>
project>

具体发布步骤如下:

右键pom.xml->Run as->Maven build->

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_互联网工程系列_21

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_互联网工程系列_22

上图中的私有库为空,我们右键pom.xml->Run as->Maven build(此时pom.xml文件的version为0.0.1-SNAPSHOT)。

构建完毕后

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础_23

说明已经将项目构建并发布到了我们的Maven私有仓库。

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_程序员进阶系列_24

此时,上图中的Release目录为空,此时,我们修改pom.xml的version为0.0.1-RELEASE,再次右键pom.xml->Run as->Maven build,构建项目,此时发布的目录如下图:

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础_25

说明已经将项目构建并发布到了我们的Maven私有仓库。

最后,我们添加第三方的Jar依赖到我们的Maven私有仓库,具体操作如下:

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础_26

如上图,第三方依赖私有仓库为空,我们按照以下步骤上传第三方依赖到我们的Maven私有仓库。

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_编程基础_27

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_Maven_28

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_Maven_29

【图文并茂】做开发这么久了,还不会搭建服务器Maven私有仓库?这也太Low了吧_Maven_30

如上图,第三方依赖已经上传到我们的Maven私有仓库。

至此,Maven 私有库和本地库的安装与配置到此结束。

总结

线程池的核心原理其实并不复杂,只要我们耐心的分析,深入其源码理解线程池的核心本质,你就会发现线程池的设计原来是如此的优雅。希望通过这个手写线程池的小例子,能够让你更好的理解线程池的核心原理。

好了,今天就到这儿吧,如果小伙伴们有啥问题可以在文末留言讨论,我是冰河,我们下期见~~