인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

rd135's profile image
rd135

asked

Spring Boot Concepts and Utilization

Getting started with Spring Boot

맨 처음 프로젝트 생성 후 Run 시 에러

Written on

·

410

0

안녕하세요 강의 수강 시작한 학생입니다. 스프링 부트 프로젝트 생성 후 Run 시 문제가 발생하는데... 아무리 검색을 해 봐도 잘 모르겠어서 질문 남깁니다. Lombok 얘기가 있긴 한데... 그 이유때문은 아닌 것 같은데 혹시 초기 설정이나 그런 쪽으로 제가 빼 먹은 것이 있을까요?
 
class는 완전 기본 형태인 main 안에 SpringApplication.run(Applicaion.class, args); 만 작성되어 있는 상태 입니다.
 
 
springjavaspring-boot

Answer 2

0

지나가다가 도움 될 수도 있어 글 남겨봅니다.

spring-boot-starter-parent 버전을 2.1.0이상으로 올려보시겠어요~?

 

참고 : https://stackoverflow.com/questions/72088391/spring-boot-cannot-load-configuration-class

 

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.6.RELEASE</version>
    <type>pom</type>
</dependency>

0

whiteship님의 프로필 이미지
whiteship
Instructor

소스 코드를 보여주실 수 있으신가요?

rd135님의 프로필 이미지
rd135
Questioner

 

 

이렇게 말고는 다른 것은 없습니다 ㅠ

rd135's profile image
rd135

asked

Ask a question