Spring MVC
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%><%@taglib uri="http://www.springframework.org/tags" prefix="spring" %><html><body> <h3> Showing Trade with Id ${trade.tradeId} <h3> <p>BuySell: ${trade.buySell}</p> <p>Buy Currency: ${trade.buyCurrency}</p> <p>Sell Currency: ${trade.sellCurrency}</p> <p>Amount : <spring:bind path="trade.amount">${status.value}</spring:bind> </p> <p>Trade Date : <spring:bind path="trade.tradeDate">${status.value}</spring:bind> </p></body></html>