Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1094017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:54:47+00:00 2026-05-16T23:54:47+00:00

When running my embedded jetty web app launcher, I see the following output to

  • 0

When running my embedded jetty web app launcher, I see the following output to stderr. I just started seeing this after moving my build to maven-2. Has anyone seen this before?

IDLE SCEP@988057 [d=false,io=1,w=true,rb=false,wb=false],NOT_HANDSHAKING, in/out=0/0 Status = OK HandshakeStatus = NOT_HANDSHAKING
bytesConsumed = 5469 bytesProduced = 5509

It repeats occasionally seemingly at random times.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T23:54:48+00:00Added an answer on May 16, 2026 at 11:54 pm

    This seems to be coming from jetty NIO support — it appears that jetty feels it is appropriate to log to stderr when it close idle connections.

    at org.eclipse.jetty.io.nio.SelectChannelEndPoint.checkIdleTimestamp(SelectChannelEndPoint.java:231)
    at org.eclipse.jetty.io.nio.SelectorManager$SelectSet$2.run(SelectorManager.java:768)
    at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:436)
    

    For those with similar problems, I overrode System.err with a mock output stream:

    public class DebugOutputStream extends OutputStream {
        private Logger s_logger = LoggerFactory.getLogger(DebugOutputStream.class);
    
        private final OutputStream m_realStream;
        private ByteArrayOutputStream baos = new ByteArrayOutputStream();
        private Pattern m_searchFor;
    
        public DebugOutputStream(OutputStream realStream, String regex) {
            m_realStream = realStream;
            m_searchFor = Pattern.compile(regex);
        }
    
        public void write(int b) throws IOException {
            baos.write(b);
            if (m_searchFor.matcher(baos.toString()).matches()) {
                s_logger.info("unwanted output detected", new RuntimeException());
            }
            if (b == '\n') baos.reset();
            m_realStream.write(b);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So, I am running a web server using embedded jetty and the maven app-assembler
Just wondering if this setup is possible: Java application running and monitoring embedded jetty
Looking at the following example of an embedded Jetty Example: http://musingsofaprogrammingaddict.blogspot.com.au/2009/12/running-jsf-2-on-embedded-jetty.html The following code
I have an existing Java web application running on Linux using embedded Jetty. The
In my application I have an embedded jetty server (version 8.1.2) running a web
I have a Node.js web server running on an embedded Linux system. For authentication
I've got a REST app that uses embedded Jetty as the server. Most of
I'm running an embedded HornetQ server on an OSGI container following an example for
I have a requirement to integrate a web server into an embedded device running
I'm running Eclipse with the run-jetty-run plugin to launch my J2EE web apps. My

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.