解决mybatis警告

警告信息

WARN 208 --- [           main] o.s.b.f.s.DefaultListableBeanFactory     : Bean creation exception on FactoryBean type check: org.springframework.beans.factory.BeanCreationException: Error creating bean with name '' defined in file []: Cannot resolve reference to bean 'sqlSessionFactory' while setting bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'sqlSessionFactory': Requested bean is currently in creation: Is there an unresolvable circular reference?

原pom

			
				org.mybatis
				mybatis-spring
				1.2.2
			
			
				org.mybatis
				mybatis
				3.2.8
			
修改为

			
				org.mybatis
				mybatis-spring
				1.2.4
			
			
				org.mybatis
				mybatis
				3.2.8
			



你可能感兴趣的:(java)