Persisting CQ data in the Java Content Repository
hi, im following this tutorial:
http://helpx.adobe.com/adobe-cq/using/persisting-cq-data-java-content.html
i finished already, but my persist.json.jsp doesnt seem to resolve the CustomerService class created in the tutorial, here is the error log:
An error occurred at line: 8 in the jsp file: /apps/jcrpersist/components/page/templateJCR/persist.json.jsp com.adobe.cq.CustomerService cannot be resolved to a type 5: String phone = request.getParameter("phone"); 6: String desc = request.getParameter("desc"); 7: 8: com.adobe.cq.CustomerService cs = sling.getService(com.adobe.cq.CustomerService.class); 9: 10: int myPK = cs.injestCustData(first, last, phone, desc) ; 11:
my bundle is active in the felix console, here it is:
[img]activeBundle.png[/img]
any idea how to fix this? or what am i missing?