zoukankan      html  css  js  c++  java
  • 在代理环境中构建maven环境

    需要设置代理的地方有三个

    • eclipse

    设定->一般->ネットワーク接続-

         选 マニュアル 添加Http,Https,Socks代理

         在下面添加例外

    • maven

    users文件夹下的.m2文件夹下的setting.xml

    或者安装目录下conf文件夹中设置全局设置

      <proxies>    
        <proxy>
            <id>http_proxy</id>
            <active>true</active>
            <protocol>http</protocol>
            <host>127.0.0.1</host>
            <port>8080</port>
            <username>user</username>
            <password>password</password>
            <nonProxyHosts>127.0.0.1</nonProxyHosts>
        </proxy>
        <proxy>
            <id>https_proxy</id>
            <active>true</active>
            <protocol>https</protocol>
            <host>127.0.0.1</host>
            <port>8080</port>
            <username>user</username>
            <password>password</password>
            <nonProxyHosts>127.0.0.1</nonProxyHosts>
        </proxy>
      </proxies>
    • IE

    IE->Internet Option->接続->LANの設定->詳細設定 

      填写 代理与例外

  • 相关阅读:
    2020年-测试流程学习
    Jmeter接口测试2020(1)
    elk
    redis
    RabbitMQ
    memcache集群
    mysql安装
    mysql从的配置文件
    memcache
    keepalived
  • 原文地址:https://www.cnblogs.com/xuemanjiangnan/p/7405569.html
Copyright © 2011-2022 走看看