Eclipse 에서 maven 프로젝트 를 만 드 는 중 오류 가 발생 했 습 니 다.

1827 단어 maven
배경 설명:    Spring tool suite(Eclipse)를 사용 하여 maven webapp 프로젝트 를 만 드 는 중 오류 가 발생 했 습 니 다.자세 한 오 류 는 다음 과 같다.
could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the configured repositories
Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the configured repositories.
Could not resolve artifact org.apache.maven.archetypes:maven-archetype-webapp:pom:RELEASE
Failed to resolve version for org.apache.maven.archetypes:maven-archetype-webapp:pom:RELEASE: Could not find metadata org.apache.maven.archetypes:maven-archetype-webapp/maven-metadata.xml in local (E:\Maven\repository)
Failed to resolve version for org.apache.maven.archetypes:maven-archetype-webapp:pom:RELEASE: Could not find metadata org.apache.maven.archetypes:maven-archetype-webapp/maven-metadata.xml in local (E:\Maven\repository)

해결 과정:
    콘 솔 에서 사용
mvn help:system 명령,Maven procject 를 만 들 때 다운로드 가 실 패 했 습 니 다.그래서 인터넷 원인 일 가능성 이 높다.내 네트워크 환경 에서 사용 하 는 에이전트.그래서 maven 의 프로필%MAVENHOME%/conf/settings.xml 에 프 록 시 설정 추가:
<proxies>
    <!-- proxy
     | Specification for one proxy, to be used in connecting to the network.
     |
    -->
    <proxy>
      <id>optional</id>
      <active>true</active>
      <protocol>http</protocol>
      <username>proxyuser</username>
      <password>proxypass</password>
      <host>proxy.host.net</host>
      <port>80</port>
      <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
    </proxy>
  </proxies>

결과:
    maven 프로젝트 재 구축 
mvn help:system
 명령 관찰,maven 은 자원 을 성공 적 으로 다운로드 할 수 있 습 니 다!

좋은 웹페이지 즐겨찾기