java 在intelij idea中加载Spring上下文版本时出错(无法解析@Configuration、@Bean、AnnotaionConfigApplicationContext)

niwlg2el  于 2023-01-11  发布在  Java
关注(0)|答案(1)|浏览(177)

我正在学习Spring,并试图实践一本书中的例子。
在pom.xml中,我使用了如下依赖项。当我使用与spring上下文相关的注解和类时,它显示错误无法解析值(@Configuration、@Bean、AnnotaionConfigApplicationContext)
请建议如何解决并继续。
在pom.xml本身中,版本标记有错误
pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.example</groupId>
    <artifactId>SpringLearning</artifactId>
    <version>1.0-SNAPSHOT</version>

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

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.2.6.RELEASE</version> !-- this is RED highlighted "dependency not found" 
        </dependency>
    </dependencies>

</project>

类别

@Configuration
public class MyConfig {

    @Bean
    public Parrot parrot() {
        var p = new Parrot();
        p.setName("abc");
        return p;
    }
}

主类
一个二个一个一个
I tried changing the versions like 6.0.3 referring from spring.io but similar error. tried searching the resolution online but no clues yet hence writing here.

b1payxdu

b1payxdu1#

我可以通过以下步骤解决错误
1.右键单击pom.xml -〉maven-〉重新加载项目,我也尝试过(加载Maven更改选项)使用其他依赖项
1.新增导入导入组织、Spring框架、上下文、注解、注解配置应用上下文;导入组织Spring框架上下文注解Bean;导入组织.springframework.上下文.注解.配置;
现在这些步骤不再出错。
学习:需要为Spring项目正确添加导入和依赖项

相关问题