Study/SpringBoot 3

[Java/Spring] 윈도우 CMD에서 스프링 빌드(build) 하는 방법 (+ Execution failed for task ':compileJava' 에러 해결)

1. Spring 윈도우에서 build 하는 방법 1. CMD 창을 연다 2. 스프링 프로젝트 디렉터리까지 경로를 이동한다. (cmd 상태 : 스프링 프로젝트 위치 > ) 3. gradlew.bat 명령어 실행 ...personal project location> gradlew.bat 4. "BUILD SUCCESSFUL" 이라는 문구가 나오면 gradlew build 명령어 실행 ...personal project location > gradlew build 5. "BUILD SUCCESSFUL" 문구가 뜨면 빌드 성공 6. 5번까지의 과정이 끝나고나면 "build" 디렉터리에 "libs"라는 디렉터리가 새로 생긴다. -> cmd 창에서 "dir" 명령어로 확인 가능 7. cd 명령어로 build 디렉..

Study/SpringBoot 2022.02.25

[Springboot / MariaDB] MariaDB와 SpringBoot 연동 시 Cannot load driver class: com.mariadb.jdbc.Driver 에러 해결법

작업 환경 Windows 10 Intellij IDEA 2021.12 Java 8 MariaDB 10.6 sdk 1.8.0 maven 스프링부트 실행 후 mariaDB와 연동하는 작업 중 에러 발생 Cannot load driver class: com.mariadb.jdbc.Driver 이 문제를 해결하기 위해 꼬박 이틀을 썼는데, 똑똑하신 분의 도움으로 단 10분만에 해결이 가능했다. 부들.. 구글링해보면 대략 두 가지의 해결방법이 나온다. 1. java의 버전과 jdbc의 버전이 달라 생기는 문제로 버전을 맞춰준다. 2. maven repository에서 해당 버전 찾아서 다운받아서 dependency에 추가한다. 하지만 두 가지 방법 모두 먹히지 않았음 그렇다면, 마지막 이 방법을 써보자! 1. 일..

Study/SpringBoot 2022.01.21

[SpringBoot/MariaDB] Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 에러 해결법

작업 환경 Windows 10 Intellij IDEA 2021.12 Java 8 MariaDB 10.6 sdk 1.8.0 maven Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class 위와 같은 에러가 뜬다면 application.properties 에서 아래의 내용을 추가해주면 된다. spring.datasource.driverClassName=com.mariadb.jdbc.Driver spring.datasource.url=jdbc:mariadb://[주소..

Study/SpringBoot 2022.01.21