- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
[http://www.springframework.org/schema/tx]
我将 jar 文件包含在 maven pom.xml 中。当我从 Eclipse 中运行 swing 应用程序时,它运行良好。但是,当我尝试从 jnlp 文件运行它时,它会抛出此错误。我已在 jnlp 文件中添加了 spring-tx jar 。这是我的 spring 上下文文件。
<!-- from the file 'context.xml' -->
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
这是 pom.xml:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${org.springframework.version}</version>
</dependency>
最佳答案
出现这个问题是因为之前我使用的是单个 spring2.5.jar ,升级到 3.x 后,我有多个 jar 。 Java Webstart 在解析不同 jar 中的命名空间处理程序文件时存在一些问题。
我的解决方案:我为所有 spring 模块构建了一个 jar 文件( using this )并将其包含在我的项目中。
关于java - Spring:无法找到 XML 模式命名空间的 Spring NamespaceHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26727036/
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 应用程序时,
我是一名优秀的程序员,十分优秀!