Java:请求属性对象的方法返回undefined(STS动态Web项目)

时间:2017-11-03 23:11:44

标签: java oop web-applications request spring-tool-suite

我正在使用STS创建Java webapp。 我使用以下代码将属性设置为名为myCat的Cat类的对象。

request.setAttribute("myCat", myCat);

Cat类的内部是属性和方法:

String showAffection(){
    return("jumps into your lap and stares at you.");
}

现在,在我的.jsp文件中,我尝试用

打印它
request.getAttribute("myCat").showAffection();

但是,STS在.jsp文件中向我显示了这个问题:

  

对于Object

类型,方法showAffection()未定义

出了什么问题?这不是访问对象中方法的正确方法吗?

0 个答案:

没有答案