无法将anotation转换为import

tmb3ates  于 2021-06-26  发布在  Java
关注(0)|答案(1)|浏览(409)

我一直在尝试配置pom文件,以便用maven启动springboot项目。我这样配置它,但是我不能在我的类中将注解转换为导入。我的pom文件上的spring starter也显示为红色。我在用intellij。

<groupId>io.github.murillojndem</groupId>
<artifactId>vendas</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
    <maven.compiler.source>8</maven.compiler.source>
    <maven.compiler.target>8</maven.compiler.target>
</properties>

<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent -->
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.4.RELEASE</version>
</parent>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>



编辑:更正拼写和图像。不过,同样的错误。

hof1towb

hof1towb1#

你可以做些事情来修复它。1-点击站顶部的灯,看看是否有一些指南来修复它。
如果第一个点不起作用,那么您就按照下一步2-打开bash并数字“mvn clean install”

相关问题