sts4 깃 임포트 후 db 연결 에러
2022. 1. 7. 01:24ㆍ스프링부트
sts4 두개를 사용하고있었는데
1번 sts4에서 개발 후 깃커밋, 2번 sts4에서 깃 임포트를 하고 프로젝트를 실행해보니 아래와 같은 에러가 떴다
Fri Jan 07 01:17:16 KST 2022
There was an unexpected error (type=Internal Server Error, status=500).
nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLRecoverableException: IO 오류: Invalid connection string format, a valid format is: "host:port:sid" ### The error may exist in file [C:\Users\82102\git\BAEMIN-bolg-note-version2\target\classes\com\baemin\mybatis\StoreMapper.xml] ### The error may involve store.storeList ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLRecoverableException: IO 오류: Invalid connection string format, a valid format is: "host:port:sid"
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLRecoverableException: IO 오류: Invalid connection string format, a valid format is: "host:port:sid" ### The error may exist in file [C:\Users\82102\git\BAEMIN-bolg-note-version2\target\classes\com\baemin\mybatis\StoreMapper.xml] ### The error may involve store.storeList ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLRecoverableException: IO 오류: Invalid connection string format, a valid format is: "host:port:sid"
오라클 접속정보는 아래처럼 했었고
sts4의 설정에서는 아래처럼 했었는데
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
spring.datasource.url=jdbc:oracle:thin:@localhost:1521
spring.datasource.username=SUMIN
spring.datasource.password=QWE123
왜그런지는 모르겠지만 jdbc:oracle:thin:@localhost:1521 뒤에 : 을 붙여주니 해결되었다
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
spring.datasource.url=jdbc:oracle:thin:@localhost:1521:
spring.datasource.username=SUMIN
spring.datasource.password=QWE123
'스프링부트' 카테고리의 다른 글
스프링부트+jsp로 배달사이트 만들기-41 관리자가 주문취소시 환불하기 추가 (1) | 2022.01.20 |
---|---|
스프링부트+jsp로 배달사이트 만들기-40 결제api 사용해서 주문하기(아임포트) (3) | 2022.01.09 |
스프링부트+jsp로 배달사이트 만들기-39 비밀번호 찾기, 비밀번호 변경 (0) | 2022.01.04 |
스프링부트+jsp로 배달사이트 만들기-38 이메일보내기(아이디 찾기,비번찾기) (0) | 2021.12.29 |
스프링부트+jsp로 배달사이트 만들기-37 내 정보 수정하기 (0) | 2021.12.27 |