Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- @PathVariable
- html video thumbnail
- 스프링부트 마이바티스
- 스프링부트
- 순위정렬
- 자바
- 랭킹정렬
- 스프링부트 오류
- SpringBoot Mybatis
- 스프링 jsp
- 스프링부트 jsp 연결
- MySQL 테이블명 바꾸기
- selection does not contain a main type
- 자바정렬
- 비디오 태그 이미지
- 정신차리고공부하자 #개발자되기 #몰입하자
- 정수 자료형
- spring jsp
- video tag
- src/main/java
- html input
- HTML
- 자바마스터
- jsp 연결
- 비디오 태그 썸네일
- Failed to configure a DataSource
- sql 테이블명 바꾸기
- 스프링 jsp 연결
- 자바 순위정렬
- 자바 #Java #Scanner #스캐너 #자바알파벳입력
Archives
- Today
- Total
쌤리
[Spring Boot] 오류: "Failed to configure a DataSource: ‘url’ attribute is not..." 본문
자바 JAVA/Spring | 스프링
[Spring Boot] 오류: "Failed to configure a DataSource: ‘url’ attribute is not..."
saml2l 2020. 8. 18. 20:09
- 위와 같이 오류 메시지가 나올 때
- 해결방법:
- 1. application.yml 파일에 아래와 같이 jdbc driver 관련 설정 추가
datasource:
username: at
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/at?useUnicode=true&characterEncoding=utf8&autoReconnect=true&serverTimezone=Asia/Seoul&useOldAliasMetadataBehavior=true&zeroDateTimeNehavior=convertToNull
- 2. db 없이 우선 작업 할 경우 main 에다가 아래 @ 어노테이션을 넣주면 된다
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class, XADataSourceAutoConfiguration.class})
- 그외 solution 들:
'자바 JAVA > Spring | 스프링' 카테고리의 다른 글
[Spring Boot] 이메일 발송 (0) | 2020.08.20 |
---|---|
[Spring Boot] MyBatis, 마이바티스 설정 (0) | 2020.08.19 |
[Spring] Spring Annotation / 스프링 어노테이션 정리 (0) | 2020.08.18 |
[Spring Boot] JSP 연결 (0) | 2020.08.18 |
스프링 기본 설정 (0) | 2020.08.04 |
Comments