search
HomeJavajavaTutorialJava design optimization proxy mode

The proxy mode uses proxy objects to complete user requests and shield users from accessing real objects.

The proxy mode has many uses. For example, for security reasons, it is necessary to shield the client from directly accessing the real object; or in remote calls, it is necessary to use proxy objects to handle technical details in remote methods; or in order to improve the system, Real objects are encapsulated to achieve the purpose of lazy loading.

When the system starts, separating the methods that consume the most resources using proxy mode can speed up the system startup and reduce the user's waiting time. When the user is actually making a query, the proxy class loads the real class to complete the user's request. This is the purpose of using proxy mode to achieve lazy loading.

1. Static proxy implementation:

Theme interface:

public interface IDBQuery {
   String request();
 }

Real theme:

public class DBQuery implements IDBQuery {
  public DBQuery(){
    try {
      Thread.sleep(10000);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
  public String request() {
    return "string request";
  }
}

Proxy class:

public class IDBQueryProxy implements IDBQuery {
  private DBQuery dbquery;
  public String request() {
    if(dbquery==null)
      dbquery = new DBQuery();
    return dbquery.request();
  }
}

Finally, the main function:

public class ProxyText {
  public static void main(String[] args) {
    IDBQuery dbquery = new IDBQueryProxy();
    System.out.println(dbquery.request());
  }
}

Static proxy Note that the proxy class is a real class that implements a common interface, and the proxy The class refers to the real class object, and the time-consuming operations are implemented in the proxy class method.

Dynamic proxy:

Dynamic proxy is a dynamically generated proxy class at runtime. That is: the bytecode of the proxy class is generated and loaded into the current classloader at runtime. Compared with static proxies, dynamic proxies do not need to encapsulate a completely identical encapsulation class for real attention. If there are many subject interfaces, it is very annoying to write a proxy method for each interface. If the interface changes, the real class Both the agent class and the agent class need to be changed, which is not conducive to system maintenance; secondly, using some dynamic agent generation methods can even specify the execution logic of the agent class at runtime, thereby greatly improving the flexibility of the system.

Theme interface:

public interface IDBQuery {
   String request();
 }

jdk proxy class:

public class JdbDbqueryHandler implements InvocationHandler{
  IDBQuery idbquery = null;
  @Override
  public Object invoke(Object proxy, Method method, Object[] args)
      throws Throwable {
    if(idbquery==null){
      idbquery = new DBQuery();
    }
    return idbquery.request();
  }
  public static IDBQuery createJdbProxy(){
    IDBQuery jdkProxy = (IDBQuery) Proxy.newProxyInstance(ClassLoader.getSystemClassLoader(),
        new Class[]{IDBQuery.class}, new JdbDbqueryHandler());
    System.out.println("JdbDbqueryHandler.createJdbProxy()");
    return jdkProxy;
  }
 
}

Main function:

public class ProxyText {
  public static void main(String[] args) {
    IDBQuery idbQuery = JdbDbqueryHandler.createJdbProxy();
    System.out.println(idbQuery.request());
  }
}

In addition, you can also use CGLIB and javassist dynamic proxies similar to jdk dynamic proxies, but the creation process of jdk dynamic classes is the fastest, because the differentiateclass() method of this built-in implementation is defined as a native implementation, so the performance is better than other. In terms of function calls of proxy classes, JDK's dynamic proxy is not as good as CGLIB and javassist dynamic proxy, and javassist dynamic proxy has the worst performance quality, even inferior to JDK's implementation. In actual development applications, the method calling frequency of the proxy class is much higher than the actual generation frequency of the proxy class, so the method calling performance of the dynamic proxy should become a performance concern. JDK dynamic proxies force the proxy class and real theme to implement a unified interface. CGLIB and javassist dynamic proxies do not have such a requirement.

In Java, the implementation of dynamic proxy involves the use of classloader. Taking CGLIB as an example, we briefly describe the loading process of dynamic classes. To use CGLIB to generate a dynamic proxy, you first need to generate an instance of the Enhancer class and formulate a callback class for handling proxy services. In the enhancer.create() method, the DefaultGeneratorStrategy.Generate() method is used to generate the bytecode of the proxy class and save it in a byte array. Then call the reflectUtils.defineClass() method, and through reflection, call the ClassLoader.defineClass() method to load the bytecode into the classloader to complete the loading of the class. Finally, through the reflectUtils.newInstance() method, the dynamic class instance is generated through reflection and the instance is returned. Other details of the process are different, but the generation logic is the same.

The above is the entire content of this article, I hope it will be helpful to everyone's study.

For more articles related to the proxy mode of java design optimization, please pay attention to the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteTop 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteMar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedSpring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedMar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

Node.js 20: Key Performance Boosts and New FeaturesNode.js 20: Key Performance Boosts and New FeaturesMar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

How to Share Data Between Steps in CucumberHow to Share Data Between Steps in CucumberMar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

How can I implement functional programming techniques in Java?How can I implement functional programming techniques in Java?Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

Iceberg: The Future of Data Lake TablesIceberg: The Future of Data Lake TablesMar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.