无法使用 maven 导入 o​​rg.springframework.jdbc.core

Posted

技术标签:

【中文标题】无法使用 maven 导入 o​​rg.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】:

SqlInOutParameterSqlParameterStoredProcedure 需要 spring-jdbc 工件。

它没有出现在dependent artifacts for spring-context 中。但是,spring-orm 确实 的工件包含此依赖项。见here

【讨论】:

以上是关于无法使用 maven 导入 o​​rg.springframework.jdbc.core的主要内容,如果未能解决你的问题,请参考以下文章

maven项目无法实现自动导入

java I/O—— 不用maven导入第三方jar包

IDEA maven中引入的依赖不自动导入项目

Android Maven Eclipse 仍然无法导入 apklib

IDEA 导入Java项目,依赖maven依赖命令(解决IDEA导入Github项目目录灰色问题,无法运行)

Intellij Idea 导入多个maven项目展示在左侧栏Maven Projects