gpt4 book ai didi

spring - Spring框架导入失败

转载 作者:行者123 更新时间:2023-12-03 06:26:29 25 4
gpt4 key购买 nike

我从Spring开始并学习它的基础。我在intellij创建了一个项目

出现错误,指出无法导入Web。

enter image description here

所以我猜一定是这样。没有网络的我的gradle构建文件

我尝试通过build.gradle文件手动导入,如下所示,但它抛出一个错误,提示找不到该错误。

我做错什么了,我该如何解决?

plugins {
id 'org.springframework.boot' version '2.2.2.BUILD-SNAPSHOT'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}

group = 'io.codementor.gtommee'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}

test {
useJUnitPlatform()
}


有什么帮助吗?

最佳答案

您在build.gradle文件中缺少spring-boot-starter-web依赖性。

首先,看看https://start.spring.io/

关于spring - Spring框架导入失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59124401/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com