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
- docker
- 리눅스
- spring
- mssql
- Javascript
- Linux
- isNotEmpty
- SQL
- analytics4
- MariaDB
- iBatis
- DBMS
- Kibana
- 자바
- springboot
- 404error
- IntelliJ
- pandas
- java
- 티스토리챌린지
- 명령어
- 오블완
- github
- PostgreSQL
- oracle
- pem
- mysql
- git
- 호이스팅
- Python
Archives
- Today
- Total
hanker
org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean 에러 본문
SPRING/SPRING-ERROR
org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean 에러
hanker 2021. 1. 8. 09:35반응형
The fully qualified name of the bean's class, except if it serves only as a parent definition for child bean
definitions. 에러가 뜨면 pom.xml 에 설정이 잘못된 것이다.
나의 문제는
<!-- JPA Provider (Hibernate) -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.3.10.Final</version>
</dependency>
pom.xml에 entitiymanager 를 사용하기 위해 추가를 해줬지만 spring-data-jpa 추가를 안해줘서 뜬 문제였다.
<!-- Spring Data JPA -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.8.1.RELEASE</version>
</dependency>
추가 후 에러 해결!
반응형
'SPRING > SPRING-ERROR' 카테고리의 다른 글
Spring - com.jcraft.jsch.JSchException: UnknownHostKey: - RSA key fingerprint is - (0) | 2021.01.18 |
---|---|
Spring - pom.xml 첫 줄 에러 (0) | 2021.01.12 |
Can not find the tag library descriptor for "http://www.springframework.org/security/tags" (0) | 2020.10.26 |
Invalid message received with signature ... (0) | 2020.10.26 |
SPRING - 405 Error (0) | 2020.09.20 |