Tag

Jetty

0 views collected around this technical thread.

Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jul 28, 2024 · Backend Development

Master Spring Boot Web Server Configuration: Switch Servers, Ports, SSL, and More

This guide explains how to switch the embedded web server in Spring Boot 3.2.5, disable it, customize ports (including random and range ports), enable HTTP compression, configure SSL and HTTP/2, add servlets, filters, listeners, set up logging, and fine‑tune Tomcat and Undertow settings, all with practical code examples.

HTTP/2JettySSL
0 likes · 14 min read
Master Spring Boot Web Server Configuration: Switch Servers, Ports, SSL, and More
vivo Internet Technology
vivo Internet Technology
Jun 21, 2023 · Backend Development

Design and Implementation of Jetty ManagedSelector and ExecutionStrategy

Jetty’s ManagedSelector wraps the native NIO selector and, together with its ExecutionStrategy abstractions, merges I/O detection and handling in a single thread or adaptive pool, using strategies such as ProduceConsume, ProduceExecuteConsume, ExecuteProduceConsume, and EatWhatYouKill to maximize cache reuse and minimize context‑switch overhead in high‑concurrency applications.

ExecutionStrategyJavaJetty
0 likes · 13 min read
Design and Implementation of Jetty ManagedSelector and ExecutionStrategy
Sohu Tech Products
Sohu Tech Products
Aug 5, 2020 · Backend Development

Analyzing a JDK ConcurrentLinkedQueue Memory Leak Bug in Jetty's QueuedThreadPool

This article examines a JDK bug causing memory leaks in Jetty's QueuedThreadPool due to improper removal in ConcurrentLinkedQueue, demonstrates the issue with a long‑running demo, analyzes heap growth using jconsole, VisualVM and jmc, and shows how newer JDK versions fix the problem.

ConcurrentLinkedQueueJDKJava
0 likes · 14 min read
Analyzing a JDK ConcurrentLinkedQueue Memory Leak Bug in Jetty's QueuedThreadPool
Java Architect Essentials
Java Architect Essentials
Jul 2, 2018 · Backend Development

Understanding Dubbo Service Containers: Spring, Jetty, and Log4j Integration

The article explains how Dubbo's standalone service container loads optional Spring, Jetty, and Log4j modules, details their configuration properties, demonstrates various startup methods, and provides a complete Java implementation of the SpringContainer with start and stop logic, followed by a test main class.

BackendDubboJava
0 likes · 5 min read
Understanding Dubbo Service Containers: Spring, Jetty, and Log4j Integration
Art of Distributed System Architecture Design
Art of Distributed System Architecture Design
Apr 10, 2015 · Backend Development

Understanding Thread Pool Implementations in JDK, Jetty, and Tomcat

This article analyzes the core principles and components of thread pools, explains why they are essential for performance and flow control, and compares the concrete implementations in JDK, Jetty 6, Jetty 8, and Tomcat, providing guidance for developers who wish to use or customize thread pools.

JDKJavaJetty
0 likes · 15 min read
Understanding Thread Pool Implementations in JDK, Jetty, and Tomcat