Search code examples
javamvel

MVEL Include Template


I want include MVEL into another MVEL file , I tried to use the @Include but it doesn't work for me,

Can anyone please suggest me that how to use MVEL in another MVEL file

Here is My code

Dear @{FIRST_NAME}, 
Hello How are you??    
@include('./Footer.txt')

Here Footer.txt is another file which contains sample text

Regards,
Satish 

The output that I am getting as

Dear John
Hello How are you??
@include('../Footer.txt'), 

Solution

  • Hey there is some correction in include

    It should be like @include{'Footer.txt'}