简体   繁体   English

Jboss应用程序安装错误

[英]Jboss application installation error

Currently while deploying the application in Jboss AS (Jboss 6.2) i am facing the below exception. 当前,在Jboss AS(Jboss 6.2)中部署应用程序时,我面临以下异常。

[Server:server-one] 20:23:35,791 ERROR [stderr] (Periodic Recovery) Exception in thread "Periodic Recovery" java.lang.StackOverflowError [Server:server-one] 
[Server:server-one] 20:23:35,791 ERROR [stderr] (Periodic Recovery)     at java.io.FilePermission$1.run(FilePermission.java:183) [Server:server-one] 
[Server:server-one] 20:23:35,791 ERROR [stderr] (Periodic Recovery)     at java.security.AccessController.doPrivileged(Native Method) [Server:server-one] 
[Server:server-one] 20:23:35,791 ERROR [stderr] (Periodic Recovery)     at java.io.FilePermission.init(FilePermission.java:183) [Server:server-one] 
[Server:server-one] 20:23:35,791 ERROR [stderr] (Periodic Recovery)     at java.io.FilePermission.<init>(FilePermission.java:249) [Server:server-one] 
[Server:server-one] 20:23:35,791 ERROR [stderr] (Periodic Recovery)     at sun.net.www.protocol.file.FileURLConnection.getPermission(FileURLConnection.java:200)

Anyone who has face such problem? 有人遇到这样的问题吗?

Thanks in Advance 提前致谢

Root cause: 根本原因:

The amount of stack space required by the program exceeds (than JVM allocated size) for the following reasons: 程序所需的堆栈空间量超过了(超过JVM分配的大小),原因如下:

  • The program and/or use-case requires a larger stack (eg, graphics-intensive programs). 程序和/或用例需要更大的堆栈(例如,图形密集型程序)。

  • The application is deeply-nested (recursion). 该应用程序是深度嵌套的(递归)。

  • Infinite loops 无限循环

Increase the thread stack size by increments of 64k until the StackOverflowError disappears. 将线程堆栈大小增加64k,直到StackOverflowError消失。 Alternative, modify the code or configuration(s) to avoid recursion or infinite loops. 或者,修改代码或配置,以避免递归或无限循环。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在JBoss AS 7上部署Web应用程序时出错 - Error when deploy web-application on JBoss AS 7 在 JBoss 7.1.0 上部署 Primefaces 应用程序时出错 - Error deploying Primefaces application on JBoss 7.1.0 在Jboss 5.0上启动JSF应用程序时出错 - Error starting JSF application on Jboss 5.0 在Jboss中部署应用程序时出现Xmlparserv2错误,在JBoss for Java Web应用程序中安装Oracle ojdbc模块 - Xmlparserv2 error while application deployed in jboss, Installing Oracle ojdbc module in JBoss for Java web application 即使在Ubuntu上使用新的JBoss发行版后,JBoss应用程序部署错误仍然存​​在 - JBoss application deployment error persists even after using a fresh JBoss distribution on Ubuntu Jboss应用程序正在运行(war文件)低于错误。 我正在使用windfly / jboss 10版本 - Jboss application running(war file) getting below error. I'm using windfly/jboss 10 version Spring MVC应用程序中的活动MQ在JBoss部署中引发错误 - Active MQ in Spring MVC application throws error in JBoss deployment 使用Jboss部署简单的War文件(J2EE应用程序)时出错 - Error of deployement of a simple War file ( J2EE application ) with Jboss Jboss错误:仅允许一个JAX-RS应用程序类 - Jboss error: Only one JAX-RS Application Class allowed 应用程序部署在jboss上,但是当我尝试访问时给出404错误 - Application deployed on jboss but gives 404 error when i try to access
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM