Spring4 Spring MVC实战(二)——MockMvc报org.springframework.core.CollectionFactory.createLinkedMap错误

可以参考http://www.stefanhendriks.com/2014/04/02/migrating-from-spring-3-2-x-to-spring-4-and-using-spring-mock-2-0-8-gives-java-lang-nosuchmethoderror-org-springframework-core-collectionfactory-createlinkedmapifpossible/


先说说我自己本身jar包的问题,我发现spring-test 4.1.4的包根本打不开,我还一直以为是依赖问题。发现jar包在Eclipse中的package explorer中根本就打不开。

然后换了版本,就成功下到包了。估计是网络问题。

pom.xml

		
			org.springframework
			spring-test
			4.1.6.RELEASE
		


org.springframework.core.CollectionFactory.createLinkedMap错误的原因在于,spring4中的spring-test已经集合了,

所以并不需要spring-mock的依赖,所以将maven的pom.xml中关于spring-mock的依赖去掉。正常运行。

		
			org.springframework
			spring-mock
			2.0
		


你可能感兴趣的:(Java框架)