0

还尝试了这篇文章AEM 6.3 - ResourceResolverFactory is null in Service and throwing LoginException in Sling Model class

界面

package org.employee.employee.core.admin;

import org.apache.sling.api.resource.ResourceResolver;

public interface CustomerService {
    public String getCustomerData();
}

服务类 ==> 获取 resolverFactory null

package org.employee.employee.core.admin; 

import java.util.HashMap;
import java.util.Map;    
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.Service;
import org.apache.sling.api.resource.LoginException;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.resource.ResourceResolverFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Component(metatype = true, immediate = true)
@Service
public class CustomerServiceImpl implements CustomerService {

    protected final Logger log = LoggerFactory.getLogger(this.getClass());

    @Reference
    private ResourceResolverFactory resolverFactory;

    public String getCustomerData() {
        Map<String, Object> param = new HashMap<String, Object>();
        param.put(ResourceResolverFactory.SUBSERVICE, "CustomerService");
        ResourceResolver resolver = null;
        try {
            resolver = resolverFactory.getServiceResourceResolver(param);
            System.out.println(resolver);
        } catch (LoginException loginExcp) {
            log.error("Exception while getting resource resolver." + loginExcp);
        }
        return resolver.toString();
    }
}

服务组件显示状态 => 活动

在此处输入图像描述

用户映射器

在此处输入图像描述

4

2 回答 2

0

我像访问它一样

CustomerService customerService = new CustomerService();
String resolver = customerService.getCustomerData();

哪个不正确并由以下解决

@Reference
private CustomerService customerService;
String resolver = customerService.getCustomerData();
于 2018-07-17T07:46:23.323 回答
0

另外我相信你不应该使用管理员用户(如屏幕截图中提到的)来访问服务,因为服务映射是为了防止对存储库的无限制访问而开发的。

而是创建一个新的系统用户并仅授予用户服务所需的权限。

要创建新的系统用户,您可以按照以下步骤操作:

  1. 在您的 AEM 实例上,打开http://server:port/crx/explorer/index.jsp
  2. 按屏幕左上角的登录链接并以管理员身份登录。
  3. 单击创建系统用户并将用户 ID 分配为 myServiceUser 并将中间路径分配为 system/MyModule。
  4. 使用 useradmin 控制台为用户分配权限。
  5. 向 ServiceUserMapper 配置添加配置修改。

有关完整步骤,请参阅此 helpx。 https://helpx.adobe.com/in/experience-manager/6-3/sites/administering/using/security-service-users.html

另一个证明这一点的答案: ResourceResolverFactory getServiceResourceResolver throws Exception in AEM 6.1

ACS Commons 的这个工具对于确保服务用户的存在非常有帮助。 https://adobe-consulting-services.github.io/acs-aem-commons/features/ensure-service-users/index.html

于 2018-09-08T07:43:27.967 回答