我刚开始在 Adobe 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,然后修改了上面的两个文件。