org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException介绍

来源:互联网 发布:yum mysql 安装目录 编辑:程序博客网 时间:2024/05/18 03:34

这个问题我上网找了很久没有发现解决方式,后来在看jar的时候突然发觉问题在哪了:

我发觉我的spring-tx-4.0.0.RELEASE.jar与我的其他jar包版本不匹配,因为用的maven管理,之前也没注意到,改了匹配之后,就没有问题了,我们在配置pom.xml可能不知道spring到底要配那些依赖包:在这里我贴一下我的spring的jar包配置:1.在SSH(maven项目,struts2,spring,hibernate)项目中:

   

<!-- spring4 --><dependency><groupId>org.springframework</groupId><artifactId>spring-core</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-beans</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-web</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-expression</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-orm</artifactId><version>4.0.0.RELEASE</version></dependency>
 2.在springmvc中:

<dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>4.0.0.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-core</artifactId><version>4.0.0.RELEASE</version></dependency>
这只是spring的jar包其他的还需要各位根据自己需求去配,在开发web项目的时候总会因为版本的问题发生这样或者那样的错误,希望能帮到各位,不要再版本问题上纠结。

0 0
原创粉丝点击