3.8 Service Extensibility
This topic provides the systematic instructions to perform the basic operations on the selected records.
Table 3-1 Service Extensibility - Field Description
Component Name | Component Description |
---|---|
<< micro - service - name >>- extn.jar | Extension jar |
<< micro - service - name >> .war | WAR File which refers to << micro - service - name >> -extn .jar during runtime. |
For systematic instructions to retrieve a service extensibility record, follow the steps:
- Add all the required classes from << micro - service - name >>.war to the classpath of
<< micro - service - name >> - extn.jar
project and then build it.For creation of war we can use the command obx create-jar- Go to extension home.
- Run the command obx create-jar.
- It will prompt you with the location of the extended war file. (After giving the location give enter two times).
- On providing the war file, it will create a jar for the same in the same location.
- The build.gradle of the extension project should include the statement.
compileOnly files("classes").
- For shared libraries we follow the optional packages approach. The following entries are expected in the MANIFEST.MF of respective war file.
Extension-List:
<< micro - service - name >> - extn, << micro - service - name >> - extn-Extension-Name : << micro - service - name >> - extn
For this, we need to modify the build.gradle of war files to include the below statements.war { ... manifest { attributes( "Extension-List": "<< micro - service - name >> -extn", "<< micro - service - name >>- extn -Extension -Name": "<< micro- service- name >>-extn" ) } ... }
- In the extension jar create a new service class that extends the original service class and annotate the class with @Primary annotation to give the service class in the extension jar higher precedence.
CustomerServiceImplExt
@Primary @Service public class CustomerServiceImplExt extends CustomerServiceImpl implements CustomerService {.....}
If the extension jar is provided the methods in the extension jar will be invoked or else the methods in the original war will be invoked.
- Weblogic deployment
Deploy the extension jar first in the weblogic then in the same server deploy the war.
Tomcat deployment
Modification in server.xml<Context ...> <Resources> <PreResources className = "org.apache.catalina.webresources.DirResourceSet" base="<<directory containing the extension jars "webAppMount="/WEB-INF/lib"/> </Resources> </Context>
- The class names inside the << micro - service - name >>- extn.jar, should have the naming convention as below,
<<basePackageNameOf<< micro - service - name >>.war>>.<<service /controller /model>>
Parent topic: Service Extensions