Greetings,
In the webapplication I am developing , I want to do something like follows:
I Have a Bean like
class Gene{
String geneid;
String sequence;
..
}
// EL expression (sometimes should be simple as "${geneid}" without URL pattern)
String exp="<a> href='http://www.ncbi.nlm.nih.gov/pubmed?term=${geneid}' />";
String outputString=someframeworkobject.somemethod(exp,aGeneInstance);
So the outputString is interpolated like : http://www.ncbi.nlm.nih.gov/pubmed?term=gene19191X
Is there any lightweight EL frameworks that I can use for this?