IT/IntelliJ
[IntelliJ] 인텔리제이에서 spring boot 버전 확인하는 방법
hi.anna
2024. 1. 8. 06:37
1. pom.xml(maven인 경우) 또는 build.gradle (gradle인 경우) 파일 확인하기
plugins {
id 'org.springframework.boot' version '3.2.0' // 스프링부트 버전
}
< build.gradle 파일 >
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0</version> <!-- 스프링부트 버전 -->
</parent>
< pom.xml 파일 >
2. Project Structure 확인하기 (IntelliJ)
File > Project Structure > Project Settings > Modules > main > Dependencies
프로젝트 스트럭처의 Dependencies 목록에서 Spring Boot 라이브러리의 버전을 확인할 수 있습니다.
3. External Libraries 확인하기
IntelliJ의 왼쪽에 있는 파일 목록에서
'External Libraries' 항목에서 Spring Boot 버전을 확인 할 수 있습니다.
4. Spring Boot 실행 시, 콘솔창 확인하기
Spring Boot 실행 시, 콘솔 창에서 Spring Boot 버전을 확인 할 수 있습니다.
반응형