Code Monkey home page Code Monkey logo

jigsaw-module-vs-legacy_service-loader's Introduction

# Java 9 and the module system

Since Java 9 introduced the new module system, I wondered how module-code can access legacy libraries that are not maintained anymore. This repository contains a working show case that demonstrates how a modular application can access legacy code using a service interface and the service loader feature.

For more information about the service loader facility refer to [Service Loader documentation](https://docs.oracle.com/en/java/javase/14/docs/api/java.base/java/util/ServiceLoader.html).

## Project structure

This project is a modular Maven project. The following modules exist:
```
service-loadeer                   -   The main project folder
\-- service-api                   -   A Java 9 module that exports the service interface 'IncementService'. 
 \-- service-impl                 -   A Java 8 legacy implementation of the service interface. 
  \                                   This code will not reside in a module. 
   \                                  It will be available through the legacy class path.
    \-- service-runner            -   A Java 9 module that declares a dependency to 'service-api' since the runner 
     \                                is used to run the service.
      \                               This module defines the 'requires' directive to 'service-api'.
       \                              This module defines the 'uses' directive to 'IncrementService'.
        \-- service-runner-legacy -   A Java 8 legacy project to run the whole example in the legacy class path (Not used).                  
``` 
## The show case

This project is a working example of a modular Java 9 application, that uses a Java 9 compliant module as service interface declaration. At runtime a legacy JAR is used to provide an instance of the service interface. The application then runs the legacy code "through" the Java 9 service interface.

This way it is possible to isolate legacy libraries and provide their services to Java 9 modular applications.

## The build

This project builds on Travis CI. The proof that it works, is a simple line printed to `System.err` that shows "OK.". 

jigsaw-module-vs-legacy_service-loader's People

Watchers

James Cloos avatar Christopher Schütte avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.