In this example you will learn how to use the <jsp:useBean>
. We can use the useBean
action to create a scripting variables. To define the variable name we use the id
attribute of this action. The class
attribute define the type of this variable. We can also define the scope of the variable using the scope
attribute.
As an example in the code snippet below we create a variable name now
and declare it to hold a java.util.Date
instance. And then we use a JSP expression to print out the value.
<%@ page contentType="text/html;charset=UTF-8" %>
<!DOCTYPE html>
<html lang="en">
<head>
<title>JSP - useBean Demo</title>
</head>
<body>
<jsp:useBean id="now" class="java.util.Date"/>
Now is: <%= now %>
</body>
</html>
Latest posts by Wayan (see all)
- How do I iterate through date range in Java? - October 5, 2023
- How do I create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023