如何从外部jsp调用内部类方法或变量?

发布于 2024-12-10 21:57:26 字数 257 浏览 0 评论 0原文

这是我的index.jsp页面:

<html>

<body>
<%!
public class myclass{
  private final int foo = 42;

  public int getFoo() {
    return foo;
  }
}
%>
</body>
</html>

如何在其他jsp页面中调用myclass方法或变量? 请帮我 。

this is my index.jsp page:

<html>

<body>
<%!
public class myclass{
  private final int foo = 42;

  public int getFoo() {
    return foo;
  }
}
%>
</body>
</html>

how to call myclass method or variable in other jsp page ?
please help me .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

颜漓半夏 2024-12-17 21:57:26

您不需要来自任何“其他”JSP。这些声明应被视为 JSP 的本地声明。如果您需要一个类被多个 JSP 使用,请将其编写为单独的 Java 源文件,编译它,并将其包含在您的 web 应用程序的 WEB-INF/classes 中。

You don't from any "other" JSP. Those declarations should be treated as local to the JSP. If you need a class to be used by multiple JSPs, write it as a separate Java source file, compile it, and include it in your webapp in WEB-INF/classes.

揽月 2024-12-17 21:57:26

您是否尝试使用类似

<%@ include file="/myFile.jsp" % > 的内容?

???

Did you try to use something like

<%@ include file="/myFile.jsp" % >

???

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