Virtual Includes

Virtual Includes

Question:
I’ve been told that you cannot have dynamic virtual includes inJSP. Is this true? For example, is something like this going tocause problems?

<% if (condition.equals("true")) { %><% } else { %><% } %>

Answer:
JSP is still relatively new, so I won’t claim to know all of its insand outs, but it looks to me like you’re mixing Server Side Includes(SSI) syntax with JSP code. It is indeed possible to perform dynamicJSP includes, but you must use the element. Thiselement allows you to include both static and dynamic resources. Theincluded resource is specified with the page attribute. The flushattribute specifies whether or not to flush the output buffer,although its utility is questionable now that the JSP 1.1specification explicitly disallows a value of false. The followingexample demonstrates how to perform the type of include you are askingabout. It generates a random integer every time the page is accessed.If the number is odd, it loads file1.jsp, if the number is even, itloads file2.jsp.

<%! java.util.Random random =	 new java.util.Random(System.currentTimeMillis()); %><% if (random.nextInt() % 2 != 0) { %><% } else { %><% } %>
Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved