首页 > 代码库 > [2017.06.09]今天看了一个SSH项目所出现的问题

[2017.06.09]今天看了一个SSH项目所出现的问题

 一开始启动项目java.lang.IllegalStateException: ApplicationEventMulticaster not initialized - call ‘refresh‘ before multicasting events via the context: Root WebApplicationContext: startup date [Tue Nov 15 11:34:41 CST 2016]; root of context hierarchy

这个异常,上网查询后发现是Spring3和Java8不兼容

Java 8 with spring 3.2.0, which doesn’t support it

http://blog.csdn.net/mj_ww/article/details/53215284

接着替换了Spring4.2的jar包

又出现了新问题

java compiler level does not match the version of the installed java project facet

技术分享

解决方法是打开该项目文件的org.eclipse.wst.common.project.facet.core.xml配置文件,修改JAVA版本,匹配我们编辑器的JDK版本(这个从项目属性-->Java Compiler-->Compiler compliance settings)。

设置好了 warning就消失了。

最后运行成功!

 

[2017.06.09]今天看了一个SSH项目所出现的问题