Tag

Static Proxy

1 views collected around this technical thread.

macrozheng
macrozheng
Dec 12, 2024 · Backend Development

Master Caddy: Simplify Web Server Setup and Advanced Proxy Configurations

This tutorial introduces Caddy, a modern Go‑based web server, shows how to install it with Docker, and demonstrates static and dynamic proxy setups, directory routing, gzip compression, and address rewriting for a SpringBoot‑Vue e‑commerce project.

CaddyCaddyfileDocker
0 likes · 9 min read
Master Caddy: Simplify Web Server Setup and Advanced Proxy Configurations
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Nov 2, 2023 · Fundamentals

Understanding the Proxy Design Pattern with Java Examples

This article explains the Proxy design pattern, illustrates its core participants with clear Chinese idiom analogies, and provides a complete static‑proxy implementation in Java—including interface, real subject, proxy class, and client code—while also noting the distinction between static and dynamic proxies.

JavaProxy PatternStatic Proxy
0 likes · 6 min read
Understanding the Proxy Design Pattern with Java Examples
Top Architect
Top Architect
Jan 11, 2023 · Backend Development

Static vs Dynamic Proxy in Java: Implementation, Execution Results, and Comparison

This article explains the differences between static and dynamic proxies in Java, provides complete code examples for static proxy, JDK native dynamic proxy, and CGLib dynamic proxy, shows their execution results, and compares their usage scenarios, especially in backend development.

CGLIBDynamic ProxyJDK
0 likes · 10 min read
Static vs Dynamic Proxy in Java: Implementation, Execution Results, and Comparison
Sanyou's Java Diary
Sanyou's Java Diary
Jul 18, 2022 · Fundamentals

Master Java Proxy Pattern: Static, JDK Dynamic & CGLIB Implementations

This article explains the proxy design pattern in Java, covering static proxy, JDK dynamic proxy, and CGLIB dynamic proxy implementations with code examples, diagrams, and a comparison of their advantages, limitations, and use‑case differences.

CGLIBDynamic ProxyJava
0 likes · 9 min read
Master Java Proxy Pattern: Static, JDK Dynamic & CGLIB Implementations
DaTaobao Tech
DaTaobao Tech
May 19, 2022 · Backend Development

Understanding Proxy Pattern and Spring Transaction Management

The article explains static and dynamic proxy patterns, demonstrates their Java implementations, and shows how Spring’s transaction management relies on dynamic AOP proxies—highlighting that internal calls within the same class bypass the proxy, preventing @Transactional methods from starting or rolling back transactions.

AOPDynamic ProxyJava
0 likes · 21 min read
Understanding Proxy Pattern and Spring Transaction Management
Selected Java Interview Questions
Selected Java Interview Questions
Nov 21, 2021 · Fundamentals

Understanding Static and Dynamic Proxy Patterns in Java

This article explains the concept of proxy patterns, compares static and dynamic proxies in Java, provides detailed code examples for each, and discusses their advantages, disadvantages, and implementation steps, helping developers choose the appropriate proxy technique for their projects.

Dynamic ProxyJavaProxy Pattern
0 likes · 15 min read
Understanding Static and Dynamic Proxy Patterns in Java
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Dec 6, 2020 · Fundamentals

Understanding the Proxy Pattern: Static and Dynamic Proxies in Java

This article explains the GoF Proxy pattern, illustrates static proxy implementation, and details both JDK dynamic proxy and cglib dynamic proxy techniques in Java with complete code examples and a comparison of their characteristics and usage scenarios.

CGLIBDynamic ProxyJDK Proxy
0 likes · 8 min read
Understanding the Proxy Pattern: Static and Dynamic Proxies in Java
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Jul 13, 2020 · Fundamentals

Understanding the Proxy Design Pattern in Java: Static, Dynamic, and CGLIB Implementations

This article explains the Proxy design pattern, covering its purpose, static, dynamic (JDK), and CGLIB implementations in Java, provides complete code examples, discusses advantages and disadvantages, and outlines typical use cases such as lazy initialization, access control, remote services, logging, and caching.

AOPCGLIBDynamic Proxy
0 likes · 14 min read
Understanding the Proxy Design Pattern in Java: Static, Dynamic, and CGLIB Implementations
Java Captain
Java Captain
Jun 19, 2018 · Fundamentals

Understanding the Proxy Pattern: Static vs Dynamic Proxy and AOP in Java

This article explains the proxy design pattern, compares static and dynamic proxy implementations in Java, demonstrates how to use Java reflection and InvocationHandler for dynamic proxies, and shows how these techniques enable AOP features such as logging and transaction handling.

AOPDynamic ProxyJava
0 likes · 12 min read
Understanding the Proxy Pattern: Static vs Dynamic Proxy and AOP in Java
Java Captain
Java Captain
Nov 28, 2017 · Fundamentals

Proxy Pattern in Java: Static, Dynamic, and Cglib Implementations

This article explains the Proxy design pattern in Java, covering static proxy, dynamic JDK proxy, and Cglib subclass proxy with detailed code examples and discussion of their advantages, limitations, and typical usage in AOP frameworks.

AOPCGLIBDynamic Proxy
0 likes · 10 min read
Proxy Pattern in Java: Static, Dynamic, and Cglib Implementations
Java Captain
Java Captain
Aug 22, 2017 · Fundamentals

Understanding Java Static and Dynamic Proxy Patterns

This article explains the concept of the Proxy design pattern, demonstrates how to implement static and dynamic proxies in Java with complete source code, and analyzes the advantages, limitations, and internal workings of Java's runtime-generated proxy classes.

Design PatternDynamic ProxyJava
0 likes · 15 min read
Understanding Java Static and Dynamic Proxy Patterns