intellij

트러블 슈팅/Spring Boot

[Spring Boot]Intellij - failed to configure a datasource 에러

# 문제 프로젝트를 실행하자 failed to configure a datasource 에러가 났다. # 해결 데이터베이스가 연결 되어있지 않아서 이므로 resources > application.properties에 들어가서 아래와 같은 db를 연결하는 코드를 넣어주면 해결된다. spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://{엔드포인트}:{포트번호}/{(초기)데이터베이스}?autoReconnect=true/serverTimezone=Asia/Seoul&characterEncoding=UTF-8 spring.datasource.username={마스터 사용자 이름} spring.dat..

트러블 슈팅/Spring Boot

[Spring Boot] Intellij Spring Boot 실행 안되는 현상 Edit Configuration

# 문제 실행버튼을 누르자 아래와 같은 창이 떴다. 검색해본 결과 메인 클래스의 Run이 활성화 되어있지 않기 때문이라고 한다. # 해결 Edit Configuration에서 +버튼을 눌러 Application에 Main class를 추가해 주었다. 설정 후 DemoApplication이었던 실행 버튼이 내가 설정한 Main으로 바뀌었다. run을 하고 포스트맨으로 확인해 본 결과 잘 작동된다. # 참고 [JAVA] intellij Run 비활성화 시 해결 방법 :: Nirsa (tistory.com) [JAVA] intellij Run 비활성화 시 해결 방법 intellij Run 비활성화 시 해결 방법 intellij를 사용하다보면 테스트 케이스만 Run이 활성화 되어 메인 클래스에서 사용하지 못하는..

Jinny2525
'intellij' 태그의 글 목록