我正在尝试编译并运行JDeveloper中“Beginning Spring”一书的第一个示例,但我遇到了一些问题。
这是pom.xml
<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.wiley.beginningspring</groupId>
<artifactId>spring-book-ch2</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>spring-book-ch2</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.0.5.RELEASE</version>
</dependency>
</dependencies>
<repositories/>
<pluginRepositories/>
</project>
JDeveloper标记以下导入,但未找到包的错误:
import org.springframework.beans.factory.annotation.Autowire;
import org.springframework.beans.factory.annotation.Qualifier;
当然,由于存在这些错误,我无法编译项目。
我已经在Updates菜单中安装了Spring集成。
在Netbeans 8和Spring Tool Suite中,该项目标记没有错误,编译并运行正常。
答案 0 :(得分:0)
尝试将此依赖项添加到您的pom.xml
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>