I have never used data context in xPages and would like to know the benefits,

If I want to return something in memory I often call function in a SSJS scriptlibrary which I believe is also stored in memory.

so let's say I have a function in ssjs that returns a notesdocument, this function might be called from several places in my xpage. will data context be benefitial in this case in regrards to having a function in a ssjs scriptlibrary.

link|improve this question

40% accept rate
feedback

1 Answer

up vote 6 down vote accepted

dataContexts can be thought of as global variables. The advantages over SSJS functions are:

1) The dataContext runs the SSJS / Java / whatever are returns the value. References to the dataContext use EL (e.g. #{myVar}), the same as datasources. So my understanding is that the EL gets the value, rather than running the SSJS / Java code each time. So there's a performance benefit there.

2) The dataContext's value can be computed dynamically or on page load. So you can use ${javascript:@Today()} and run it once rather than running a function each time.

I suspect there's also a performance benefit because references to dataContexts use EL. So at no point in the references do you run SSJS, so it's not having to go through the SSJS parser.

The additional benefit of dataContexts is they can be scoped to any level that datasources can - so XPage, Custom Control or Panel. This gives them an advantage over viewScope. So youo can also set a dataContext in a panel in a repeat control, to avoid multiple references to a NotesDocument's field or concatenation of fields.

I've tended to avoid storing Domino objects in dataContexts, mainly because of the inherent risks of recycling. I don't know if there's an issue, I'

link|improve this answer
Are there any issues with recycling domino documents when using datacontexts? I'm not realy aware of such. I know you shouldn't cache domino objects yourself because of the recycle call but datacontexts should be able to work around that? – jjtbsomhorst Feb 23 at 14:46
From a recent discussion, the output of a dataContext is only available while its container (XPage, Custom Control or Panel) is being collected and rendered. As soon as that's finished, the object is recycled. So you'd probably get issues if you bound a dataContext to a Domino object computed on page load, and then tried to access it during a partial refresh. But as long as the dataContext content is computed dynamically, because it will hold all the relevant code to retrieve the Domino object, you shouldn't have a problem. Of course the dataContext will get recreated for partial refreshes. – Paul Stephen Withers Mar 2 at 23:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.