我正在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依赖项下,我只有JDK1.8。
当我必须使用@Configuration和@Bean注解在java类中配置我的bean时,我不能导入 org.springframework。
3条答案
按热度按时间5uzkadbs1#
您似乎只是在NetBeans中创建了一个maven项目。您在
pom.xml
中声明的maven依赖项将被下载并列在Dependencies
文件夹中。右击
Dependencies
文件夹,然后点击Download Declared Dependencies
重新加载依赖项。如果仍然失败,您可能需要检查setting.xml
中的maven代理。zaq34kh62#
更新您的项目。按Alt + F5,然后选择您的项目,然后单击“确定
否则右键单击您的项目-〉Maven -〉Update Project。确保您已连接到Internet以下载所有这些Spring依赖项。
3gtaxfhh3#
我也遇到了同样的问题。我在pom中添加了以下内容:
看起来很管用......