tags:

views:

27

answers:

1

I see some program, in its jsp code, it has following : And it will be mapped into a class. When you put some database object into this tag, it will automatically loop to load the data from database.

I want to know, In Jsp, how to map the JSP tag to a class? Then when there is a such tag, system will know it should load a class to process it?

Thanks in advance...

A: 

I'd start with the following manuals in order to write JSP tags as classes.

For completeness, now you can write jsp tags as special tag files, see here

David Rabinowitz