Hi,
I am creating a web application using JSP. I heard of custom tags but have never explored it. I want to use custom tags in my application. Will it affect the performance of my application?
Cheers.
Printable View
Hi,
I am creating a web application using JSP. I heard of custom tags but have never explored it. I want to use custom tags in my application. Will it affect the performance of my application?
Cheers.
There are chances of a performance degradation if too many custom tags are used in a JSP page. If it is anticipated that the page will not have a large number of concurrent users/hits, usage of custom tags ensures that the JSP only has the presentation code. It is then, more readable and maintainable.
Thanks mate.