reset password
Author Message
ceejay562
Posts: 25
Posted 16:23 Dec 05, 2014 |

Is there a way to print into the console using jstl?

cysun
Posts: 2935
Posted 16:26 Dec 05, 2014 |

No. Custom tags are mostly used for generating HTML content - in other words they print to HTTP response rather than console. With that said, you can create your own custom tag that calls System.out.println() in doTag().