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 split large excel file into multiple smaller files? - April 15, 2023
- How do I get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023