Spring Boot NestedIOException 에러

2023년 10월 23일 월요일
1분 소요
0회

문제

spring boot를 실행하던 도중 에러가 났다.

shellscript

1

2

3

4

5

6

2023-06-10 23:17:34.892 [main] ERROR o.s.boot.SpringApplication - Application run failed
java.lang.NoClassDefFoundError: org/springframework/core/NestedIOException
    at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:312)
    at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:236)
    at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:280)
    at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:96)

문제 해결

확인해보니 build.gradle에 명시한 spring boot버전과 mybatis-spring버전이 맞지않아 생겼던 문제로, 둘 다 같은 버전대로 업데이트 후 재실행하니 해결되었다.


Loading reactions

© 2024 Hopoduck. All rights reserved.