无法使用 maven 导入 org.springframework.jdbc.core
Posted
技术标签:
【中文标题】无法使用 maven 导入 org.springframework.jdbc.core【英文标题】:Can't import org.springframework.jdbc.core with maven 【发布时间】:2013-02-22 16:55:42 【问题描述】:我不知道为什么在我的项目中找不到以下导入: 代码:
import org.springframework.jdbc.core.SqlInOutParameter;
import org.springframework.jdbc.core.SqlParameter;
import org.springframework.jdbc.object.StoredProcedure;
我的 pom.xml 文件中有以下内容
代码:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.2.1.RELEASE</version>
</dependency>
但我发现,如果我添加以下内容,它会起作用,但我不明白为什么需要:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>$springframework-version</version>
</dependency>
【问题讨论】:
3.2.1 版出来了吗?是的,显然springsource.org/node/3791 你需要包含你需要的具体模块***.com/a/2237805/106261 【参考方案1】:如果你想使用 Spring Jdbc 包,你必须导入正确的库:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>3.2.1.RELEASE</version>
</dependency>
【讨论】:
【参考方案2】:SqlInOutParameter
、SqlParameter
和 StoredProcedure
需要 spring-jdbc 工件。
它没有出现在dependent artifacts for spring-context
中。但是,spring-orm
确实 的工件包含此依赖项。见here
【讨论】:
以上是关于无法使用 maven 导入 org.springframework.jdbc.core的主要内容,如果未能解决你的问题,请参考以下文章
Android Maven Eclipse 仍然无法导入 apklib