我正在使用 STS(eclipse 插件)和 maven 开发 Spring MVC 应用程序。
为了创建项目,我按照 STS 向导创建了一个新的“Spring MVC 项目”。之后,我向其他项目和库添加了一些依赖项。
但是,当我现在尝试将项目部署到 STS 的集成 vFabric 服务器时,有时会出现异常:
SEVERE: ContainerBase.addChild: start:
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/wsa]]
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:154)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901)
...
Caused by: java.lang.IllegalStateException: Unable to complete the scan for annotations for web application [/app] due to a StackOverflowError. Possible root causes include a too low setting for -Xss and illegal cyclic inheritance dependencies. The class hierarchy being processed was [org.bouncycastle.asn1.ASN1EncodableVector->org.bouncycastle.asn1.DEREncodableVector->org.bouncycastle.asn1.ASN1EncodableVector]
at org.apache.catalina.startup.ContextConfig.checkHandlesTypes(ContextConfig.java:2179)
...
当发出“maven clean”,然后是“maven install”并重新启动服务器时,有时不会抛出异常并且应用程序工作正常。然而,大多数时候,它不起作用。
我想没有必要扫描 bouncycastle 依赖项以获取注释。
我可以以某种方式禁用对某些罐子的扫描吗?
我已经尝试添加metadata-complete="true"
到我的 web.xml 并增加堆栈大小但没有结果。
我能做些什么来解决这个问题?