在maven项目中导入org.springframework

时间:2017-01-09 15:04:24

标签: java spring maven netbeans

我在maven环境中学习Spring。我正在使用netbeans。

的pom.xml

<dependencies>
    <?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>com.davidsalter.cookbook</groupId>
<artifactId>springMavenTest</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>4.3.4.RELEASE</version>
    </dependency>
</dependencies>

</project>

spring.context-4.3.4.RELEASE.jar 出现在依赖关系下。在 Java Dependencies 下,我只有JDK1.8。

当我必须使用@Configuration和@Bean注释在java类中配置我的bean时,我无法导入 org.springframework

2 个答案:

答案 0 :(得分:1)

您似乎只是在NetBeans中创建了一个maven项目。您在pom.xml中声明的maven依赖项将被下载并列在Dependencies文件夹中。

右键单击Dependencies文件夹,然后单击Download Declared Dependencies重新加载依赖项。如果仍然失败,您可能需要在setting.xml中检查您的maven代理。

答案 1 :(得分:0)

更新您的项目。 通过Alt + F5然后选择您的项目,然后单击确定

否则,右键单击您的项目 - &gt; Maven - &gt;更新项目。 确保您已连接到Internet以下载所有这些spring依赖项。