我在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上什么都没打印,请帮帮我?
答案 0 :(得分:0)
你的代码看起来不错?
你直接调用JSP吗?
你的Action是否在struts.xml中映射?
答案 1 :(得分:0)
调试建议: