views:

24

answers:

1

I have several JSP files that are included into other JSP pages. Some of these use taglibs declared in the pages that include them.

Should these taglibs be declared in the included files as well? If so, do they need a different prefix?

+1  A: 

No, you don't need to define them again - you can use them in the included files as well.

Bozho
That's what I thought, but Eclipse likes showing errors in functions from taglibs defined in the outer files.
R. Bemrose
Eclipse is not very good with JSPs
Bozho