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
- 오류
- git push
- Mac
- missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- 클라우드 서비스
- Swift
- spring
- MySQL
- 줄거리
- 동구
- 클라우드 서비스 특징
- 서평
- 데이메이커
- 콜미동구
- Xcode
- java
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- 에러
- git
- 깃
- 기록하는 동구
- 자바 파일업로드
- 책
- JavaScript
- 독후감
- Mapper
- SpringBoot
- 자바스크립트
- 파이썬 웹크롤링
- 한줄평
Archives
- Today
- Total
인생은 속도가 아니라 방향이다
[Spring] Bean을 찾지못해서 발생하는 오류 본문
반응형
콘솔을 보면 'com.springboot.test.mapper.FileUploadMapper' bean을 못찾는다고 나온다.
어플리케이션 클래스 안에 @MapperScan(basePackages={"해당패키지"})넣어주면 해결!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package com.springboot.test;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@MapperScan(basePackages= {"com.springboot.test.mapper"})
public class SpringbootTestApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootTestApplication.class, args);
}
}
|
반응형
'백엔드(Back-end) > Spring' 카테고리의 다른 글
[Spring] 스프링부트 thymeleaf css 바로 반영하기 (0) | 2020.10.23 |
---|---|
[Spring] @Modelattribute 개념 정리 어떻게 작동하는걸까? (0) | 2020.10.23 |
[Spring] Springboot 엑셀 다운로드/업로드 (POI 라이브러리) ① (0) | 2020.07.31 |
Comments