实例化Javabean

发布于 2025-01-04 22:08:49 字数 365 浏览 0 评论 0原文

您好,这是实例化 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素罗衫 2025-01-11 22:08:49

对于您在 scriptlet 中编写的以下代码。您可以使用以下 jsp 语法来实现相同的目的。

<jsp:userBean id="currentSessionUser" class="userbeanpackage.UserBean" />

For the code below that you have written in scriptlet. you can use the following jsp syntax for the same.

<jsp:userBean id="currentSessionUser" class="userbeanpackage.UserBean" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文