이번에 Spring 실습하면서 발생한 오류이다.
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
음... 처음에 이게 뭔 소리인가 했는데
web 을 실행할때 DB를 접속하는 의존성 주입이 되지 않은 상태여서 발생했다...
application.properties에 아래 같이 사용하고 있는 DB관련 내용을 추가해주면 된다.
(MySQL을 기준으로 작성했습니다.)
spring.datasource.url=jdbc:mysql://localhost:3306/(데이터베이스)
spring.datasource.username=(계정)
spring.datasource.password=(비밀번호)
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
728x90
'오류 수집' 카테고리의 다른 글
DispatcherServlet 중복 정의로 인한 충돌 오류 (0) | 2024.10.08 |
---|---|
(Spring) jakarta.servlet.ServletException: java.lang.NoClassDefFoundError: javax/servlet/jsp/tagext/TagLibraryValidator (0) | 2024.10.05 |
(Spring) factory.UnsatisfiedDependencyException DI(의존성) 모호 에러 (0) | 2024.10.04 |
NoSuchBeanDefinitionException 오류 (0) | 2024.10.01 |
JSP Selenium 오류 "StaleElementReferenceException" (0) | 2024.09.03 |