- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 Spring 实现 Oracle Pooling DataSource,如下所述: http://docs.spring.io/spring-data/jdbc/docs/current/reference/html/orcl.datasource.html
但是,我遇到了这个问题:
Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/data/orcl]
Offending resource: class path resource [applicationContext.xml]
据我了解,这个问题是因为Spring无法定位到Oracle JDBC Driver导致的。但是,驱动程序在我的类路径中;所以,我不知道是什么导致了这个问题。
applicationContext.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:orcl="http://www.springframework.org/schema/data/orcl"
xsi:schemaLocation="
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/data/orcl http://www.springframework.org/schema/data/orcl/spring-data-orcl-1.0.xsd">
<orcl:pooling-datasource
id="dataSource"
url="jdbc:oracle:thin:@//abc.ca:1527/abc_default.abc.ca"
username="abc"
password="abc"/>
pom.xml
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
<version>1.1.2.RELEASE</version>
</dependency>
最佳答案
似乎缺少对 spring-data-oracle 的依赖。试试这个:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-oracle</artifactId>
<version>1.2.1.RELEASE</version>
</dependency>
关于java - Oracle 池数据源 - 无法找到 Spring NamespaceHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31861843/
org.mule.api.lifecycle.InitialisationException: Initialisation Failure: Configuration problem: Unabl
我正在尝试使用基本身份验证配置我的网络应用程序。但是在我配置了 spring-security.xml 后,Web 应用程序无法再在 Tomcat 上启动。 它抛出异常如下: Exception se
我已经为这个问题奋斗了几天,我真的很绝望。我正在升级的遗留项目在 Tomcat 启动期间给我以下错误消息: Configuration problem: Unable to locate Namesp
当我使用 spring v.3.1 执行我的 java 项目时,出现以下错误: Bean 'configParser'; nested exception is org.springframework
这个错误我已经有将近一周的时间了,我正准备放弃。我已经使用 Maven2 制作了 BIG jar 文件。当我使用以下方式运行 jar 文件时: java -jar someJar.jar 我收到此错
我正在使用 SpringSource Tool Suite 开发一个 spring webflow (2.0.7) 项目。我正在尝试设置基本流程。 我的 someflow.xml 看起来像这样:
尝试在Tomcat 6上运行应用程序时遇到Spring 3.1命名空间问题: GRAVE: Exception sending context initialized event to listene
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: Spring BeanDefinitionParsingException SEVERE: StandardWrap
在成功尝试实现我自己的蓝图拦截器以使用命名空间处理程序跟踪方法进入/退出之后,我现在正在寻找增强它的方法,其中拦截器本身被定义为同一蓝图 xml 中的另一个 bean,并且我的命名空间元素使用 ref
引起:org.springframework.beans.factory.parsing.BeanDefinitionParsingException:配置问题:无法为 XML 模式命名空间找到 Sp
当我尝试运行一个简单的应用程序 (JPA + Hibernate + Maven) 时出现以下错误。当我将 war 文件部署到应用程序服务器时它工作正常,但它在我的 IDE (Eclipse) 中不起
我想使用 Spring 实现 Oracle Pooling DataSource,如下所述: http://docs.spring.io/spring-data/jdbc/docs/current/r
我在 eclipse 中的 tomcat 中运行一些 servlet 代码。它一直工作正常,但今天我收到错误 Unable to locate Spring NamespaceHandler for
在运行时,我的代码在终端上出现此错误 线程“main”中的异常 java.lang.RuntimeException:org.springframework.beans.factory.parsing
我正在使用 Spring 创建一个独立的 Sava 应用程序,以处理 JDBC 访问。该应用程序在每次测试中都能正常运行,我决定需要一个 jar 来部署我们的客户端。 他们的类路径中可能没有 spri
我一遍又一遍地收到此错误: 10:37:21,270 ERROR DispatcherServlet:466 - Context initialization failed org.springfra
*强文本*我在运行 Java SE +Spring 应用程序时遇到以下错误。我在互联网和这个网站上发现了类似的问题,但找不到正确的解决方案。我认为问题是缺少jar文件。 Exception in th
我正在尝试在 Spring Boot 2.1.7 应用程序中配置 ActiveMQ 代理,特别是启用 statsBrokerPlugin。 我的activemq.xml:
我正在尝试使用 Eclipse 创建我的第一个 Spring/Maven Web 应用程序,但我在 spring-security.xml 配置文件中收到此警告,这几天来一直让我抓狂! 我尝试从其他人
[http://www.springframework.org/schema/tx] 我将 jar 文件包含在 maven pom.xml 中。当我从 Eclipse 中运行 swing 应用程序时,
我是一名优秀的程序员,十分优秀!