what is the difference between these setter methods
What is the difference between these two setter methods?
<jsp:useBean id="checking" scope="session" class="bank.Checking" />
<jsp:setProperty name="checking" property="balance" value="0.0" />
and
<jsp:useBean id="checking" scope="session" class="bank.Checking" >
<jsp:setProperty name="checking" property="balance" value="0.0" />
</jsp:useBean>

