트러블 슈팅

트러블 슈팅/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이 활성화 되어 메인 클래스에서 사용하지 못하는..

트러블 슈팅/react-native

[react-native] Metro (the local dev server) is run from the wrong folder error

# 문제 metro 실행 시 아래와 같은 오류가 났다. Metro (the local dev server) is run from the wrong folder. Check if Metro is running, stop it and restart it in the current project. # 해결 이전에 실행하던 다른 프로젝트의 메트로가 제대로 종료가 안돼서 나타나는 에러이므로 캐시를 정리해 줘야한다. => npx react-native start --reset-cache

트러블 슈팅/react-native

npm ELIFECYCLE 에러

# 문제 npm run start를 했을 때 발생했다. code ELIFECYCLE, errorno 1 npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! chatbot-app@1.0.0 start: `node index.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the chatbot-app@1.0.0 start script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in: npm ERR! ..

Jinny2525
'트러블 슈팅' 카테고리의 글 목록 (2 Page)