实例化Javabean
您好,这是实例化 javabean 的正确方法吗?在学校,我们被教导使用<% usebean id="something" class="package.java" ...%>
xml 标记。
然而,在一些教程中,我看到人们正在使用这个:
<th>Welcome <%UserBean currentUser = (UserBean)session.getAttribute("currentSessionUser"));%><%= currentUser.getUsername()%></th>
是否建议在 jsp 中执行上述代码?
Hi is this the correct way to instantiate a javabean? in school, we are taught to use the<% usebean id="something" class="package.java" ...%>
xml tag.
However in some tutorials, i see people are using this:
<th>Welcome <%UserBean currentUser = (UserBean)session.getAttribute("currentSessionUser"));%><%= currentUser.getUsername()%></th>
is it advisable to do the above code in jsp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您在 scriptlet 中编写的以下代码。您可以使用以下 jsp 语法来实现相同的目的。
For the code below that you have written in scriptlet. you can use the following jsp syntax for the same.