programing

로컬 도커에서 호스팅되는 mariadb에 연결하는 스프링 부트

muds 2023. 7. 25. 21:22
반응형

로컬 도커에서 호스팅되는 mariadb에 연결하는 스프링 부트

다음은 마리아 연결을 시도하는 스프링의 매우 기본적인 스타터 응용 프로그램입니다.도커에서 로컬로 실행 중인 DB 및 어떻게든 봄에 mariaDB에 연결할 수 없지만 SQL Client에서 동일한 자격 증명/구성으로 연결하려고 하면 문제가 없어 보입니다.

오류:-

enter image description here

enter image description here

응용 프로그램 속성:-

enter image description here

종속성:-

<dependencies>
                <dependency>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-devtools</artifactId>
                    <optional>true</optional>
                </dependency>
                <dependency>
                    <groupId>org.mariadb.jdbc</groupId>
                    <artifactId>mariadb-java-client</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.mariadb</groupId>
                    <artifactId>r2dbc-mariadb</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.testcontainers</groupId>
                    <artifactId>mariadb</artifactId>
                    <scope>test</scope>
                </dependency>
            </dependencies>

pom.xml을 붙여넣거나 올바른 종속성이 있는지 확인하십시오.

 <groupId>org.mariadb</groupId>
 <artifactId>r2dbc-mariadb</artifactId>
 <groupId>org.mariadb.jdbc</groupId>
 <artifactId>mariadb-java-client</artifactId>

언급URL : https://stackoverflow.com/questions/74938500/spring-boot-connecting-to-mariadb-hosted-in-local-docker

반응형