I want to create a dynamic anchor tag. Let's say I have a database and I want to use them.
Example: Before
<a href="page1.xhtml">Page 1</a>
<a href="page2.xhtml">Page 2</a>
<a href="page3.xhtml">Page 3</a>
It should be something like this --After--
<a href="{Value from database}">{Value from database}</a>
<a href="#{appRoot}/{linkOpsBean.srcNameList[0]}">#{linkOpsBean.srcNameList[0]}</a>