Skip to content

Instantly share code, notes, and snippets.

@joakime
Created August 19, 2020 21:22
Show Gist options
  • Select an option

  • Save joakime/dbb696c4d56ec75cdaf9eb0ba1e8259c to your computer and use it in GitHub Desktop.

Select an option

Save joakime/dbb696c4d56ec75cdaf9eb0ba1e8259c to your computer and use it in GitHub Desktop.
## org.eclipse.jetty.demo.EmbeddedEnhancedListenerSCIDemo
[INFO] org.eclipse.jetty.util.log.javautil (1) Logging initialized @196ms to org.eclipse.jetty.util.log.JavaUtilLog
[INFO] org.eclipse.jetty.server.Server (1) jetty-9.4.31.v20200723; built: 2020-07-23T17:57:36.812Z; git: 450ba27947e13e66baa8cd1ce7e85a4461cacc1d; jvm 11.0.8+10
[INFO] org.jboss.weld.environment.servletWeldServlet (1) WELD-ENV-001008: Initialize Weld using ServletContainerInitializer
[INFO] org.jboss.weld.Version (1) WELD-000900: 3.1.3 (Final)
[INFO] org.jboss.weld.Bootstrap (1) WELD-000101: Transactional services not available. Injection of @Inject UserTransaction not available. Transactional observers will be invoked synchronously.
[INFO] org.jboss.weld.environment.servletJetty (1) WELD-ENV-001200: Jetty 7.2+ detected, CDI injection will be available in Servlets and Filters. Injection into Listeners should work on Jetty 9.1.1 and newer.
[INFO] org.eclipse.jetty.server.handler.ContextHandler (1) Started o.e.j.s.ServletContextHandler@6941827a{/,null,AVAILABLE}
[INFO] org.eclipse.jetty.server.AbstractConnector (1) Started ServerConnector@43a0cee9{HTTP/1.1, (http/1.1)}{0.0.0.0:8099}
[INFO] org.eclipse.jetty.server.Server (1) Started @998ms
HTTP_1_1 200
content-length: 6
content-type: text/plain;charset=utf-8
date: Wed, 19 Aug 2020 21:21:14 GMT
server: Jetty(9.4.31.v20200723)
Hello
[INFO] org.eclipse.jetty.demo.GreetingsServlet (32) We are in init()
HTTP_1_1 200
content-length: 10
content-type: text/plain;charset=utf-8
date: Wed, 19 Aug 2020 21:21:14 GMT
server: Jetty(9.4.31.v20200723)
Greetings
[INFO] org.eclipse.jetty.server.AbstractConnector (1) Stopped ServerConnector@43a0cee9{HTTP/1.1, (http/1.1)}{0.0.0.0:8099}
[INFO] org.eclipse.jetty.server.handler.ContextHandler (1) Stopped o.e.j.s.ServletContextHandler@6941827a{/,null,UNAVAILABLE}
Process finished with exit code 0
org.eclipse.jetty.demo.EmbeddedListenerDemo
[INFO] org.eclipse.jetty.util.log.javautil (1) Logging initialized @185ms to org.eclipse.jetty.util.log.JavaUtilLog
[INFO] org.eclipse.jetty.server.Server (1) jetty-9.4.31.v20200723; built: 2020-07-23T17:57:36.812Z; git: 450ba27947e13e66baa8cd1ce7e85a4461cacc1d; jvm 11.0.8+10
[INFO] org.jboss.weld.environment.servletWeldServlet (1) WELD-ENV-001007: Initialize Weld using ServletContextListener
[INFO] org.jboss.weld.Version (1) WELD-000900: 3.1.3 (Final)
[INFO] org.jboss.weld.Bootstrap (1) WELD-000101: Transactional services not available. Injection of @Inject UserTransaction not available. Transactional observers will be invoked synchronously.
[INFO] org.jboss.weld.environment.servletJetty (1) WELD-ENV-001201: Jetty 7.2+ detected, CDI injection will be available in Servlets and Filters. Injection into Listeners is not supported.
[INFO] org.eclipse.jetty.server.handler.ContextHandler (1) Started o.e.j.s.ServletContextHandler@62452cc9{/,null,AVAILABLE}
[INFO] org.eclipse.jetty.server.AbstractConnector (1) Started ServerConnector@eb21112{HTTP/1.1, (http/1.1)}{0.0.0.0:8099}
[INFO] org.eclipse.jetty.server.Server (1) Started @912ms
HTTP_1_1 200
content-length: 6
content-type: text/plain;charset=utf-8
date: Wed, 19 Aug 2020 21:21:58 GMT
server: Jetty(9.4.31.v20200723)
Hello
[INFO] org.eclipse.jetty.demo.GreetingsServlet (34) We are in init()
HTTP_1_1 200
content-length: 10
content-type: text/plain;charset=utf-8
date: Wed, 19 Aug 2020 21:21:58 GMT
server: Jetty(9.4.31.v20200723)
Greetings
[INFO] org.eclipse.jetty.server.AbstractConnector (1) Stopped ServerConnector@eb21112{HTTP/1.1, (http/1.1)}{0.0.0.0:8099}
[INFO] org.eclipse.jetty.server.handler.ContextHandler (1) Stopped o.e.j.s.ServletContextHandler@62452cc9{/,null,UNAVAILABLE}
Process finished with exit code 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment