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 | 31 |
Tags
- 인프런
- react
- DB Browser
- 거북이 대포 게임
- react오류
- 자바스크립트
- 계산맞추기 게임
- vs code 내 node
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 모던자바스크립트
- Spring-Framework
- intellij
- 타자 게임 만들기
- 모두의 파이썬
- Concurrently
- props
- 리액트
- node.js로 로그인하기
- 따라하며 배우는 노드 리액트 기본 강의
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- Colaboratory 글자 깨짐
- JS 개념
- Do it 자바스크립트 + 제이쿼리 입문
- spring-boot
- 웹 게임을 만들며 배우는 리액트
- googleColaboratory
- node.js 설치
- 노드에 리액트 추가하기
- Python
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
Archives
- Today
- Total
프로그래밍 삽질 중
[spring-boot]Spring Boot – Error creating bean with name ‘dataSource’ 오류 본문
과거 프로그래밍 자료들/컴퓨터설정&오류
[spring-boot]Spring Boot – Error creating bean with name ‘dataSource’ 오류
평부 2021. 7. 5. 22:20※ 스프링 프로젝트 의존성 설정 후 작동 시 오류
※ 문제점을 찾다가 dataSource -> application.yml이 문제인가 해서 수정 -> 문제 해결 안 됨
※ 검색 후 참고 자료를 찾음
https://vpkarmani.com/spring/spring-boot-error-creating-bean-with-name-datasource/
[오류 - 해결 전]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication(scanBasePackages = {"example.demo"})
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
|
cs |
[해결]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
@SpringBootApplication(scanBasePackages = {"example.demo"})
@EnableAutoConfiguration(exclude = { DataSourceAutoConfiguration.class }) //이 부분
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
|
cs |
'과거 프로그래밍 자료들 > 컴퓨터설정&오류' 카테고리의 다른 글
[MYSQL] cmd(명령프롬프트)에서 msyql 실행하기 (0) | 2021.12.29 |
---|---|
VS Code node.js 실행(터미널 단축키, 터미널 내 bash 설정) (0) | 2021.08.25 |
[spring-boot]intllij 내 Bean을 찾지 못해서 발생하는 오류 (0) | 2021.07.05 |
구글 Colaboratory 한글(문자) 깨짐 방지 초기 설정하기 (0) | 2021.06.30 |
Intellij Database Navigator로 MySQL 설치 (0) | 2021.06.24 |