본문 바로가기

SpringBoot3

springboot initializer 로 jpa library 추가 후 실행 오류 springboot initializer로 jpa를 추가한 project 생성 후 initellij로 실행시 아래 오류가 발생한다. 처음엔 build.gradle 파일에서 jpa 부분만 제거 후 실행 동작하길래 project 빌드가 잘못된것으로 알았다. *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable drive.. 2021. 12. 17.
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port. 이번에는 Intellij를 통해 emq broker에 등록된 topic을 subscribe하는 sample을 실행, publish하는 sample을 실행하는 8080 port 중복 오류가 발생한다. 오류내용 Identify and stop the process that's listening on port 8080 or configure this application to listen on another port. application.properties에 server port를 변경해주는 방법이 있으나, 수행될 program은 server 역활이 없으므로 build.gradle에 아래 항목을 삭제 후 해결했다. implementation 'org.springframework.cloud:spring-clo.. 2021. 9. 28.
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. 최근 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 연결 정보를 구성하여 해결하였.. 2021. 9. 28.