How to set the default editor to open JSP files in eclipse?

Go to Window-> Preferences -> General-> Editors-> File Associations. In the File Types pane, choose *.jsp and in the associated editors pane, set your default JSP editor.. Popular Articles you may like : Java 8 Interview Questions   RESTful CRUD operations using Jersey and Hibernate   Frequently asked Java Programming Interview questions on Strings

JSP If else condition using JSTL if and choose tags

We can use JSTL tags in JSP pages to evaluate if…else scenarios. – c:if – c:choose   JSTL Core “if” Tag   The “if” tag evaluates an expression and displays its body content only if the expression evaluates to true.   Attributes of if tag: The if tag has following attributes: Required attribute test – […]