Skip to content

Instantly share code, notes, and snippets.

View UtkarshYadav01's full-sized avatar

UtkarshYadav01

View GitHub Profile
@UtkarshYadav01
UtkarshYadav01 / JSP Cheat Sheet.md
Last active September 19, 2024 01:15
Java Refresher Notes

JSP Tag Cheat Sheet

1. Scriptlet Tag (<% %>)

  • Used for writing Java code directly within a JSP.

    <% int count = 42; %>

2. Declaration Tag (&lt;%! %&gt;)