최근 Intellij 를 통해 emq broker 등록된 topic을 지정 message publish하는 sample을 작성 중이다.
하지만, springboot를 console을 수행시 아래 오류가 발생하며 실행되지 않는다.
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loadded from a particular profile you may need to activate it (...)
구글링 결과 대부분 application.properties에 jdbc 연결 정보를 구성하여 해결하였으나, 나의 경우엔 db를 사용도 안하는데, 습관적으로 springboot project 구성에 'jdbc'를 추가 하였다.
우선 build.gradle에서 아래 항목 주석 처리...
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
'개발언어 > Java' 카테고리의 다른 글
[Spring jpa] could not extract ResultSet; SQL [n/a] error (0) | 2022.02.01 |
---|---|
Invalid Gradle JDK configuration found. error (0) | 2022.01.14 |
springboot initializer 로 jpa library 추가 후 실행 오류 (0) | 2021.12.17 |
AES256 java & c# encrypt, decrypt 처리 (1) | 2021.12.06 |
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port. (0) | 2021.09.28 |