반응형
🚨 Application run 시 발생한 에러 메시지
Description:
Parameter 0 of constructor in com.example.demo.repository.querydsl.ArticleRepositoryCustomImpl required a bean of type 'java.lang.Class' that could not be found.
Action:
Consider defining a bean of type 'java.lang.Class' in your configuration.
❓에러 발생 이유
해당 문구는 Spring이 실행되면서 java 파일이 bean 등록이 되지 않았을 때 나타나는 에러 메시지입니다.
저의 경우에는 QueryDSL을 사용한 ArticleRepositoryCustomImpl.java 파일이
Spring bean에 등록이 되지 않아서 나타나는 메시지입니다.
✅ 해결 방법
ArticleRepositoryCustomImpl의 기본 생성자를 매개변수가 없는 기본 생성자로 등록해 줍니다.
아래 코드를 참고해 주세요.
ArticleRepositoryCustomImpl.java
public class ArticleRepositoryCustomImpl extends QuerydslRepositorySupport implements ArticleRepositoryCustom{
// 변경 전 -> 기본 생성자
// public ArticleRepositoryCustomImpl(Class<?> domainClass) {
// super(Article.class);
// }
// 변경 후 -> 매개변수가 없는 기본 생성자
public ArticleRepositoryCustomImpl() {
super(Article.class);
}
@Override
public List<String> findAllDistinctHashtags() {
QArticle article = QArticle.article;
return from(article)
.distinct()
.select(article.hashtag)
.where(article.hashtag.isNotNull())
.fetch();
}
}
반응형
'JAVA > Error' 카테고리의 다른 글
[Spring] The bean 'delegatingApplicationListener' 에러 해결 방법 (0) | 2024.05.28 |
---|---|
[ Spring ] TransientPropertyValueException 에러 해결 방법 (0) | 2024.05.20 |
[QueryDSL][Spring] attempt to recreate a file for type qclass 에러 해결 방법 (0) | 2024.04.10 |
[Spring] java.lang.IllegalArgumentException: Name for argument of type 에러 해결 방법 (0) | 2024.04.10 |
[Spring] Could not find build 에러 해결 방법 (0) | 2024.04.10 |
댓글