Is it recommended to save the below data in transform message or under src/main/resources and call it while doing transformation?
product_id | product_name | category_id |
---|---|---|
1 | Pear | 50 |
2 | Banana | 50 |
3 | Orange | 50 |
4 | Apple | 50 |
I currently put it in transform message so wanted to know if that's the good approach.