[jboss-jira] [JBoss JIRA] (AS7-2704) <distributable/> app with mod_cluster StackOverflowError on request
Marek Schmidt (Updated) (JIRA)
jira-events at lists.jboss.org
Fri Nov 18 11:01:40 EST 2011
[ https://issues.jboss.org/browse/AS7-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Marek Schmidt updated AS7-2704:
-------------------------------
Attachment: jboss-as-helloworld.war
Source of the HelloWorldServlet:
@SuppressWarnings("serial")
@WebServlet("/HelloWorld")
public class HelloWorldServlet extends HttpServlet {
static String PAGE_HEADER = "<html><head><title>Node1</title></head><body>";
static String PAGE_FOOTER = "</body></html>";
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
PrintWriter writer = resp.getWriter();
writer.println(PAGE_HEADER);
writer.println("<h1>Hello, world</h1>");
writer.println(PAGE_FOOTER);
writer.close();
}
}
> <distributable/> app with mod_cluster StackOverflowError on request
> -------------------------------------------------------------------
>
> Key: AS7-2704
> URL: https://issues.jboss.org/browse/AS7-2704
> Project: Application Server 7
> Issue Type: Bug
> Components: Clustering
> Environment: jboss-as-7.1.0.Alpha2-SNAPSHOT from 2011-11-18
> Reporter: Marek Schmidt
> Assignee: Paul Ferraro
> Priority: Blocker
> Attachments: jboss-as-helloworld.war
>
>
> Any request through modcluster on a simple <distributable/> app with a single servlet leads to the following exception (direct request to the server works fine):
> 16:42:36,730 ERROR [org.apache.catalina.connector.CoyoteAdapter] (http-node1-127.0.1.1-8080-2) An exception or error occurred in the container during the request processing: java.
> lang.StackOverflowError
> at org.jboss.as.clustering.infinispan.atomic.AtomicMapCache.get(AtomicMapCache.java:20)
> at org.jboss.as.clustering.infinispan.atomic.AtomicMapCache.get(AtomicMapCache.java:12)
> at org.infinispan.atomic.AtomicMapLookup.getMap(AtomicMapLookup.java:137)
> at org.infinispan.atomic.AtomicMapLookup.getAtomicMap(AtomicMapLookup.java:88)
> at org.jboss.as.clustering.infinispan.atomic.AtomicMapCache.get(AtomicMapCache.java:20)
> at org.jboss.as.clustering.infinispan.atomic.AtomicMapCache.get(AtomicMapCache.java:12)
> at org.infinispan.atomic.AtomicMapLookup.getMap(AtomicMapLookup.java:137)
> ...
> at org.infinispan.atomic.AtomicMapLookup.getMap(AtomicMapLookup.java:137)
> at org.infinispan.atomic.AtomicMapLookup.getAtomicMap(AtomicMapLookup.java:88)
> at org.jboss.as.clustering.infinispan.atomic.AtomicMapCache.get(AtomicMapCache.java:20)
> at org.jboss.as.clustering.infinispan.atomic.AtomicMapCache.get(AtomicMapCache.java:12)
> at org.infinispan.atomic.AtomicMapLookup.getMap(AtomicMapLookup.java:137)
> at org.infinispan.atomic.AtomicMapLookup.getAtomicMap(AtomicMapLookup.java:88)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list