Struts2:没有struts标记的Action类中的call方法

时间:2017-11-02 16:41:46

标签: struts2 el

我有以下课程:

public class HomeAction extends ActionSupport {

public String execute() {
    ...
}

public String getPippo() {
    return "pippo";
}

我在struts.xml配置文件中链接此操作:

<action name="home" class="path/to/HomeAction">
   <result name="success">/jsp/home.jsp</result>
</action>

在相关的jsp页面中

// home.jsp

// this works
<s:property value="getPippo()"/>

// this doesn't work
${getPippo()}

我也尝试了不同的范围(页面,会话,应用程序),但它说它无法找到该功能。我错过了什么?

0 个答案:

没有答案