Spring boot | 쇼핑몰 만들기 | 어글리 마켓/홈페이지 만들기 | 고객,관리자
스프링부트 프로젝트 세팅 에러
선이데이
2022. 4. 29. 22:53
*************************** 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 driver class |
DB설정하라는 에러메세지이다.
/src/main/resources/application.properties 파일
#MySQL DB설정 spring.datasource.url=jdbc:mysql://localhost:3306/uglyMarket?useSSL=false&characterEncoding=UTF-8&serverTimezone=UTC spring.datasource.username=root spring.datasource.password=1234 |
DB설정해주고 서버 실행하기
http://localhost:8080/
브라우저를 열면 잘 뜬다.
반응형
LIST