我使用IntelliJ IDEA 12.1、Jetty9.0服务器、Spring、Apache来创建和调试REST服务。当我尝试调试我的应用程序时,它会冻结在以下一行:1512 [Scanner-1] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@639f9c92: defining beans
我应该在哪里寻找这种行为的原因呢?
发布于 2013-12-12 05:41:45
在IntelliJ调试设置中,您可以选择是挂起所有线程还是仅挂起有断点的线程。如果您将其设置为Thread,您的应用程序将继续运行它的其他线程。
https://stackoverflow.com/questions/20535378
复制相似问题