Failed to load ApplicationContext之spring中最经常遇到的问题汇总

今天遇到几个极难解决的问题,出现如上问题基本上都是配置文件的问题:

jjava.lang.IllegalStateException: Failed to load ApplicationContext


org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)

Caused by: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'dataSource': Bean with name 'dataSource' has been injected into other beans [transactionManager] in its raw version as part of a circular reference, but has eventually been wrapped. This means that said other beans do not use the final version of the bean. This is often the result of over-eager type matching - consider using 'getBeanNamesOfType' with the 'allowEagerInit' flag turned off, for example.

这个今天是我遇到的比较典型的问题,路径配置的太大了,修改代码如下:







你可能感兴趣的:(日常笔记)