Jyotiprakash Mishrablog.jyotiprakash.org·Nov 18, 2024Dynamic Plugin Loading in Java: From Configuration to Annotation-Based Dependency InjectionIn modern software development, dynamically loading and managing plugins at runtime allows for high flexibility, extensibility, and modularity in applications. This blog will walk through creating a dynamic plugin architecture using Dependency Inject...27 readsJava
Nguyen Hoang Namnamnguyen1202.hashnode.dev·Nov 3, 2023Dive deep into Java Class loader Part 1Class loader in Java is a useful concept in many situations. Understanding and manipulating it well is key to using many tools effectively, such as Tomcat, Spring, and Maven. This post will discuss the concept of class loaders in Java. Note: This pos...41 readsJava
Udaysinhknowthatstuff.hashnode.dev·Jul 25, 2022Java reflection - dynamic class loading with examplehttps://examples.javacodegeeks.com/core-java/dynamic-class-loading-example/ What is dynamic class loading? Dynamic Java Class allows the Java platform with the ability to install software components at run-time where you can load your classes in a la...392 readsexample