본문 바로가기

Back-End/spring5

SpringBoot 사용시 schema.sql / data.sql안먹을 때 schema.sql / data.sql 을 통해 DB initialize를 진행하는데, SpringBoot-JPA 사용시 안먹는다! Why? Entity를 기준으로 자동으로 DDL이 생성되기 때문이다. application.properties 에 아래 옵션을 추가해주면 Entity를 통한 자동 DDL생성이 아닌 schema.sql / data.sql을 통해 초기DB값이 셋팅된다. 2021. 5. 23.
옛 SpringBoot 프로젝트 버전올리기 4 - Plugin with id 'spring-boot' not found. A problem occurred evaluating root project 'projectName'. > Plugin with id 'spring-boot' not found. plugin 이름이 spring-boot > org.springframework.boot 으로 변경되었다고한다 stackoverflow.com/questions/26577805/spring-boot-gradle-plugin-cant-be-found spring-boot gradle plugin can't be found I have a separate gradle script that is just adding spring-boot plugin. It looks like this: buildscript { repositories.. 2021. 5. 9.
옛 SpringBoot 프로젝트 버전올리기 3 - could not find spring-boot-gradle-plugin > Could not resolve all artifacts for configuration ':classpath'. > Could not find org.springframework.boot:spring-boot-gradle-plugin:2.4.5.RELEASE. 2.4.0 부터는 뒤에 RELEASE가 빠졌다고 한다. plugins.gradle.org/plugin/org.springframework.boot 2021. 5. 9.
옛 SpringBoot 프로젝트 버전올리기 2 - Could not create task ':dependencyManagement' spring.io/projects/spring-boot sprin boot가 2.4.5까지 올라간 이 와중에 옛날프로젝트는 1.3.5에 멈춰 있어서 DependencyManagementPlugin 오류 발생. 친절하게도 어디서 발생했는지 알려주었다. (오류내용) > Failed to apply plugin class 'io.spring.gradle.dependencymanagement.DependencyManagementPlugin'. > Could not create task ':dependencyManagement'. > Could not create task of type 'DependencyManagementReportTask'. 블라블라블라 Caused by: org.gradle.api.inte.. 2021. 5. 9.
옛 SpringBoot 프로젝트 버전올리기 1 - Unsupported Gradle 오류/distributionUrl 설정 옛날옛날 프로젝트를 intelliJ에 import시키려고 했더니 버전이 너무 낮아서 띄워지지를 않는다..O_O 오래되긴했지... 한 6년됐나... (오류내용) Unsupported Gradle. The project uses Gradle 2.13 which is incompatible with IntelliJ IDEA 2020.3.3. Possible solution: - Upgrade Gradle wrapper to 3.0 version and re-import the project 오늘자 기준으로 services.gradle.org/distributions/ 에는 6.9까지 나와있는데 2.13이라니... inetlliJ는 3.0을 이야기 하지만 최신으로 가봅니다. distributionUrl=http.. 2021. 5. 9.