如何通过代理

时间:2016-11-09 15:07:38

标签: spring maven spring-mvc spring-ldap

我想通过代理使用maven我读了许多答案,说要在.m2文件夹的settings.xml文件中编写一些配置,但这不起作用这是我的配置: 我的域名是:cgi.net.intra 我的计算机是LDAP的成员

<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">
  <proxies>
    <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>ncproxy3</host>
      <port>8080</port>
      <username>gh40615</username>
      <password>mypasseword</password>
      <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
    </proxy>
  </proxies>
</settings>
有人能帮帮我吗? Merci d'avance

1 个答案:

答案 0 :(得分:2)

  1. 检查您的代理确实使用http,而不是https
  2. 检查您的代理确实使用端口8080
  3. 使用FQH for - ncproxy3.cgi.net.intra
  4. 确保您的settings.xml位于$ {user.home} /。m2 /
  5. 祝你好运。