1
내 애플리케이션에 스프링 부트를 사용하고 있습니다. oracle 데이터베이스에 연결하는 데 문제가 있습니다. 나는 아래와 같이 의존성을 추가했다.오라클에 아티팩트가 누락되었습니다.
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.1.0.2</version>
</dependency>
그것은 내 루트 폴더에 항아리를 다운로드하고 내 프로젝트의 루트 폴더에 다음 명령을 실행하여이 문제를 해결하려고 나에게 오류 missing artifact com.oracle.jdbc:ojdbc7:jar:12.1.0.2
을 제공합니다.
mvn install:install-file -Dfile=ojdbc7.jar -DgroupId=com.oracle -DartifactId=ojdbc7 -Dversion=12.1.0.2 -Dpackaging=jar
나는 아직도, 아래의 운을 추가하지 이상 해결하기 위해 노력
Downloading: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/1.4.0.RELEASE/spring-boot-starter-parent-1.4.0.RELEASE.pom
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-resolvable parent POM for com.erp.tch:processingsystem:0
.1.0: Could not transfer artifact org.springframework.boot:spring-boot-starter-p
arent:pom:1.4.0.RELEASE from/to central (https://repo.maven.apache.org/maven2):
Connect to repo.maven.apache.org:443 [repo.maven.apache.org/151.101.44.215] fail
ed: Connection refused: connect and 'parent.relativePath' points at wrong local
POM @ line 10, column [email protected]
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project com.erp.tch:processingsystem:0.1.0:0.1.0 (C:\TIPS\wo
rkspace\tipsredesign\pom.xml) has 1 error
[ERROR] Non-resolvable parent POM for com.erp.tch:processingsystem:0.1.0: Could not transfer artifact org.springframework.boot:spring-boot-start
er-parent:pom:1.4.0.RELEASE from/to central (https://repo.maven.apache.org/maven
2): Connect to repo.maven.apache.org:443 [repo.maven.apache.org/151.101.44.215]
failed: Connection refused: connect and 'parent.relativePath' points at wrong lo
cal POM @ line 10, column 13 -> [Help 2]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildin
gException
[ERROR] [Help 2]}
아래로 오류를 얻고있다.
-DgroupId=com.oracle
를하지만의 groupId com.oracle.jdbc
와 종속성에서 참조 :
<relativepath>../pom.xml</relativepath>
온라인상의 10 행은 무엇인가요? jdbc 드라이버는 groupId ('-DgroupId = com.oracle')로'com.oracle'을 사용하여 로컬로 설치되었지만'com.oracle.jdbc' (' com.oracle.jdbc ')로 의존성에서 참조되었습니다. . 아마도 같은 groupId를 사용해야 할 것입니다. 왜 상대 경로? 여러 모듈을 만들고 있습니까? –
Glenn
은 groupid를 com.oracle.jdbc 에서 com.oracle 으로 변경하여 문제를 해결했습니다. 도와 주셔서 감사합니다. –
Developer