我的财产没有在struts 2.0中的jsp上渲染

发布于 2024-09-08 18:29:57 字数 820 浏览 3 评论 0原文

我在 Action 类中设置了一个属性,如下所示

public class HelloWorld{
  public String execute() { ANNOTATION #1
  setCustomGreeting( GREETING + getName() );
  return "SUCCESS"; 
  }
  private String customGreeting;
  public String getCustomGreeting()
  {
    return customGreeting;
  }
  public void setCustomGreeting( String customGreeting ){
  this.customGreeting = customGreeting;
}
}

,我尝试在 jsp 上呈现它,如下所示,

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>HelloWorld</title>
</head>
<body>
<h3>Custom Greeting Page</h3>
<h4><s:property value="customGreeting"/></h4> 
</body>
</html>

但它在 jsp 上没有打印任何内容,请帮助我?

I have set a property in Action class as follows

public class HelloWorld{
  public String execute() { ANNOTATION #1
  setCustomGreeting( GREETING + getName() );
  return "SUCCESS"; 
  }
  private String customGreeting;
  public String getCustomGreeting()
  {
    return customGreeting;
  }
  public void setCustomGreeting( String customGreeting ){
  this.customGreeting = customGreeting;
}
}

And i m trying to render it on jsp as follows

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>HelloWorld</title>
</head>
<body>
<h3>Custom Greeting Page</h3>
<h4><s:property value="customGreeting"/></h4> 
</body>
</html>

But it's printing nothing on the jsp, please help me?

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

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

发布评论

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

评论(2

亽野灬性zι浪 2024-09-15 18:29:57

调试建议:

  • 在方法中放置断点(或跟踪语句等)以确认它们是否被调用。
  • 放置一个页面上的标签。
  • 如果这没有给出任何提示,则启用更详细的日志记录(如何执行此操作取决于所使用的日志记录框架),特别是对于 OGNL。

Debugging suggestions:

  • Put breakpoints (or trace statements, or whatever) in the methods to confirm whether or not they are called.
  • Place an <s:debug/> tag on the page.
  • If that doesn't give any hints, then enable more detailed logging (how to do this will depend on what logging framework is being used), specifically for OGNL.
梦在夏天 2024-09-15 18:29:57

你的代码看起来不错吗?

直接调用JSP吗?

您的 Action 是否映射到 struts.xml 中?

Your Code looks fine?

Do you call the JSP directly?

Is your Action mapped in the struts.xml?

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