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

  • How to Connect to Splunk Through Anypoint Studio in 10 Steps
  • Effective Java Collection Framework: Best Practices and Tips
  • How To Create a Stub in 5 Minutes
  • How To Validate Names Using Java

Trending

  • Multi-Scale Feature Learning in CNN and U-Net Architectures
  • Building a Production-Ready AI Agent in 2026: Beyond the Hello World Demo
  • S3 Vectors: How to Build a RAG Without a Vector Database
  • The Hidden Bottlenecks That Break Microservices in Production
  1. DZone
  2. Coding
  3. Languages
  4. Implement a Counter in Dataweave 2.x and Above

Implement a Counter in Dataweave 2.x and Above

In this article, see how to implement a counter in DataWeave.

By 
Rahul Kumar user avatar
Rahul Kumar
·
Dec. 11, 19 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
22.4K Views

Join the DZone community and get the full member experience.

Join For Free

Implement a Counter in Dataweave

These days, I see quite a few posts that require using Counter in DataWeave. The problem faced is that users require a Sequence Number that is consistent throughout the different sections of data. Consider the below JSON:

JSON
 




xxxxxxxxxx
1
17


 
1
[{
2
"Item" : "ItemXYZ",
3
  "SequenceNo" : 1,
4
  "Parts": [
5
{ "Part" : "A1", "SequenceNo" : 2 }, { "Part" : "B1", "SequenceNo" : 3 },
6
{ "Part" : "A2", "SequenceNo" : 4 }, { "Part" : "B2", "SequenceNo" : 5 }
7
  ]
8
},
9
 {
10
"Item" : "ItemRTY",
11
  "SequenceNo" : 6,
12
  "Parts": [
13
{ "Part" : "A1", "SequenceNo" : 7 }, { "Part" : "B1", "SequenceNo" : 8 },
14
{ "Part" : "A2", "SequenceNo" : 9 }, { "Part" : "B2", "SequenceNo" : 10 }
15
  ]
16
}
17
]



As you can see here, we have "SequenceNo," which increases every time, irrespective of the structure of JSON. If we have to add a SequenceNo in any data, we have limited options. There are workarounds like using a recursive function or calculating the counters using Complex logic to achieve a counter, but it hampers the performance. DataWeave is developed for transformations mostly, and it doesn't have built-in counters, which would save its last stored value throughout the execution.

So I have come up with a DataWeave solution that uses the Java Module. Java Module comes with an Invoke function for DataWeave, which I will be using in DataWeave. To include Java Module, add the below dependency in the pom.xml:

XML
 




xxxxxxxxxx
1


 
1
<dependency>
2
  <groupId>org.mule.module</groupId>
3
  <artifactId>mule-java-module</artifactId>
4
  <version>1.2.5</version> <!-- or newer -->
5
  <classifier>mule-plugin</classifier>
6
</dependency>



We will use AtomicInteger for this example. Since it comes with a built-in increment function and is present under Java Util package, there is no need to add any extra dependencies. You can use any other implementation as well, but you would need to add a utility class and a function to use it inside the DataWeave.

Below is a simple usage example:

Java
 




xxxxxxxxxx
1
20


 
1
%dw 2.0
2
import java!java::util::concurrent::atomic::AtomicInteger
3
var counter = AtomicInteger::new(0)
4
fun increment() = Java::invoke('java.util.concurrent.atomic.AtomicInteger', 'incrementAndGet()', counter, {})
5
output application/json
6
---
7
{
8
"field1" : "Field1Value",
9
"SNo" : increment(),
10
"Attributes" : {
11
"Field1" : "Field1Value",
12
"Field2" : "Field2Value",
13
"SNo" : increment(),
14
"Attributes" : {
15
"Field1" : "Field1Value",
16
"Field2" : "Field2Value",
17
"SNo" : increment()
18
}
19
}
20
}



This will produce an output like below:;

Image title

Used a counter variable to create an Instance of AtomicInteger and initialized to 0, increment() function will use Java invoke to increment the counter DataWeave variable. So we can use the increment() function anywhere without worrying about any other logic independently.

Below is another usage example:

Java
 




xxxxxxxxxx
1
23


 
1
%dw 2.0
2
import java!java::util::concurrent::atomic::AtomicInteger
3
var counter = AtomicInteger::new(0)
4
fun increment() = Java::invoke('java.util.concurrent.atomic.AtomicInteger', 'incrementAndGet()', counter, {})
5
output application/json
6
---
7
[{
8
"Item" : "ItemXYZ",
9
  "SNo" : increment(),
10
  "Parts": [
11
{ "Part" : "A1", "SNo" : increment() }, { "Part" : "B1", "SNo" : increment() },
12
{ "Part" : "A2", "SNo" : increment() }, { "Part" : "B2", "SNo" : increment() }
13
  ]
14
},
15
 {
16
"Item" : "ItemRTY",
17
  "SNo" : increment(),
18
  "Parts": [
19
{ "Part" : "A1", "SNo" : increment() }, { "Part" : "B1", "SNo" : increment() },
20
{ "Part" : "A2", "SNo" : increment() }, { "Part" : "B2", "SNo" : increment() }
21
  ]
22
}
23
]



Using the above script, we will get an output like below:

Image title

I will come up with some more utilities in the next post.

Stay tuned!

Further Reading

Mule 4 DataWeave Functions: Part 1

DataWeave 1.0 to DataWeave 2.0 Migration – Part 1

Java (programming language) JSON Data (computing) POST (HTTP) Dependency Execution (computing) XML Workaround Implementation

Opinions expressed by DZone contributors are their own.

Related

  • How to Connect to Splunk Through Anypoint Studio in 10 Steps
  • Effective Java Collection Framework: Best Practices and Tips
  • How To Create a Stub in 5 Minutes
  • How To Validate Names Using Java

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