无法解析配置“:classpath”的所有项目。找不到spring-boot-gradle-plugin-2.3.0.build-snapshot.jar(org.springframework.boot:spring-boot-gradle-plugin:2.3.0.build-snapshot:20200409.145011-519).在以下位置进行了搜索:https://repo.spring.io/snapshot/org/springframework/boot/spring-boot-gradle-plugin/2.3.0.build-snapshot/spring-boot-gradle-plugin-2.3.0.build-20200409.145011-519.jar
请找到我的gradle build
plugins {
id 'org.springframework.boot' version '2.3.0.BUILD-SNAPSHOT'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'com.mycompany'
version = '0.0.1-SNAPSHOT' //TODO how does verioning work in this project?
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-integration'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.kafka:spring-kafka'
implementation 'org.springframework.boot:spring-boot-starter-aop'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation ('org.springframework.integration:spring-integration-test'){
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation ('org.springframework.kafka:spring-kafka-test'){
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
}
test {
useJUnitPlatform()
}
如果您没有特别的理由使用snapshot
版本,我建议使用release或milestone。
快照生成相当不稳定。如果你想看一看新的2.3版本的Spring Boot,你可能应该使用里程碑版本。对于今天,它将是2.3.0.m4
。
为此,更改org.springframework.boot
插件版本,如下所示:
id 'org.springframework.boot' version '2.3.0.M4'
你好,我正在学习Spring Boot,我正在做一个简单的项目。我在尝试执行测试时遇到了这个问题。请告诉我我做错了什么:( 我的项目Github在这里:https://github.com/emicovi/GildedRose_SpringBoot 应用程序无法启动 描述: __________: 字段中的字段项存储库在 com.镀金玫瑰.DBLoader 需要一个类型为“com.镀金玫瑰.镀金玫
项目pom 数据pom web pom
我在尝试用标记化启动Spring Boot应用程序时遇到问题。这是我的服务课: 这是我的配置类: 当我尝试运行我的应用程序时,我会出现以下错误: 我不明白为什么我会犯这个错误。
我有这个pom.xml:
我有一个使用JPA、Web和PostgreSQL的简单Spring Boot项目。我使用的是最新的Spring Boot版本2.1.3。
我正在使用和。 但是,每当我向HotelRepository添加依赖项时,编译器会在com.demo.hotelController中给出错误 为了解决这个错误,我从我的角度检查了所有方面,但都是徒劳的。我研发的东西。 对于将提供一个现成的默认实现。根据Spring文档 我已经用注释了接口,因此不需要将 使用注释从spring上下文添加依赖项,因此它应该从spring上下文中选择已创建的bean。