DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Create Proxy Application for Mule APIs
  • Create Custom DataWeave Functions in Mule 4
  • MuleSoft: Do You Have an Extra Mule Under the Hood?
  • MuleSoft: Tactical and Strategical Role of an Application Template

Trending

  • A System Cannot Protect What It Does Not Understand
  • Ujorm3: A New Lightweight ORM for JavaBeans and Records
  • Building an Image Classification Pipeline With Apache Camel and Deep Java Library (DJL)
  • Multi-Scale Feature Learning in CNN and U-Net Architectures
  1. DZone
  2. Software Design and Architecture
  3. Integration
  4. How to Import a MuleSoft Application as a Utility or Reference

How to Import a MuleSoft Application as a Utility or Reference

Learn how to plug an already-developed MuleSoft application into your underdeveloped application in just five easy steps.

By 
Satwinder Singh user avatar
Satwinder Singh
·
Feb. 18, 19 · Tutorial
Likes (4)
Comment
Save
Tweet
Share
26.0K Views

Join the DZone community and get the full member experience.

Join For Free

While exploring Mule 4, I was reminded of the old webMethods days, which provided you the freedom to include your common utility applications/interfaces into your main applications. Not only did it help to reduce code duplication, but it also helped speed up your development cycle.

As some of you may know, we can achieve this in MuleSoft as well. Let's quickly demonstrate how you can plug an already-developed MuleSoft application into your underdeveloped application. 

Step 1: Create a MuleSoft application containing common logic that can be used in multiple applications (e.g. calculate interest, enrichment, cross-referencing, etc.).

Step 2: Export the utility application as JAR file from Anypoint Studio along with its pom.xml in same folder location (in Mule 4, by default, the package application is in the JAR archive).

ExportCommonUtility

Step 3: Add this JAR file to the local Maven repository (.m2) using Maven commands to install artifact or use Anypoint Studio's "Install file into local repository" ability. First, select the pom.xml (Mule 4 by default provide maven apps) for utility application and the corresponding jar file. There is no need to define the classifier. Click "Install."

InstallArtifactLocalRepo

Step 4: Go to the main application wherein you want to reference this application and edit the pom.xml to install the artifact as a dependency. This will ensure that the utility JAR is packaged into the main application along with other dependencies. Verify if the JAR is included under project libraries.

<dependency>
    <groupId>com.mycompany.utilities</groupId>
    <artifactId>preprocessing</artifactId>
    <version>1.0.0</version>
</dependency>
</dependencies>

Step 5: Go to the main application's Mule configuration file and open "Global Elements." Search for the "Import" option under Global Configurations, then provide the utility application's Mule configuration file that you want to reference.

GlobalElements

By doing so, you can reference all the flows from your utility application into your main application and perform data processing as required without writing similar code again.

Note: Please keep in mind that this relationship does not define the parent-child relationship. This is just a way to increase code reusability and allow the developer to create utility applications for quick development cycles.

application MuleSoft

Opinions expressed by DZone contributors are their own.

Related

  • Create Proxy Application for Mule APIs
  • Create Custom DataWeave Functions in Mule 4
  • MuleSoft: Do You Have an Extra Mule Under the Hood?
  • MuleSoft: Tactical and Strategical Role of an Application Template

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook