0

我刚开始在 Adob​​e CQ 中使用 JSP,我正在尝试做一个简单的 Hello World 来访问世界上最简单的 Bean 中的数据。从我读过的所有内容来看,这是正确的。这里发生了什么?

我的 JSP (html.jsp) 是:

<%@page session="false"
        contentType="text/html;charset=UTF-8"
        import="org.apache.sling.api.request.ResponseUtil"
%>
<%@taglib prefix="sling" uri="http://sling.apache.org/taglibs/sling/1.0"%>
<sling:defineObjects/>
<html>
  <body>
<jsp:useBean id="myBean" class="com.example.helloBean.SampleUtil" >
        <jsp:getProperty name="myBean" property="text"/>
      </jsp:useBean>
  </body>
</html>

我修改了模板生成的“Hello World”类(SampleUtil.java)如下:

package com.example.helloBean;
public class SampleUtil{
    private String text;
    public SampleUtil(){
        this.text = "Hello World.";
    }
    public  String getText() {
        return text;
    }
    public void setText(String text){
    this.text = text;
    }
}

访问我得到的页面时

Cannot find any information on property 'text' in a bean of type 'com.example.helloBean.SampleUtil'

可能相关的细节:我在 CQ 中使用 /apps 上的 CRXDELite 中的“创建项目”命令生成了这个,它创建了一个工作的 Hello World,然后修改了上面的两个文件。

4

2 回答 2

1

尝试将包名称重命名helloBeanhellobean无处不在。它应该只包含小写字母。

于 2013-07-04T04:42:55.857 回答
0

我也遇到了同样的问题。只需用小写字母更改所有方法的名称

于 2016-02-06T13:55:00.437 回答