Say I'm having a jsp script that uses a model Model1 which provides myMethod. Now, model Model2 has it's own implementation of myMethod.
Model1 is for component 1, Model2 is for component 2. I want to include the jsp script in both components, without the need to duplicate it, the only difference being the model instantiated.
Any ideas?
Solved! Go to Solution.
Views
Replies
Total Likes
You can write a factory class which initialize either model 1 or model 2 based on your condition and then use that factory class in your jsp script
Views
Replies
Total Likes
You can write a factory class which initialize either model 1 or model 2 based on your condition and then use that factory class in your jsp script
Views
Replies
Total Likes
Another way people work with models in AEM is to use the BackBone framework:
Views
Replies
Total Likes