私は Alfresco 5.1 Community を使用しています。たとえば、現在ログインしているユーザーのプロパティ値を取得しようとしています。
"{http://www.someco.org/model/people/1.0}customProperty"
Javaでこれを取得するにはどうすればよいですか?
カスタム プロパティなので、http://localhost:8080/alfresco/service/api/peopleには表示されません。これどうやってするの?
少なくともnodeRefを取得するためにこれを試みます:
protected ServiceRegistry getServiceRegistry() {
ProcessEngineConfigurationImpl config = Context.getProcessEngineConfiguration();
if (config != null) {
// Fetch the registry that is injected in the activiti spring-configuration
ServiceRegistry registry = (ServiceRegistry) config.getBeans().get(ActivitiConstants.SERVICE_REGISTRY_BEAN_KEY);
if (registry == null) {
throw new RuntimeException("Service-registry not present in ProcessEngineConfiguration beans, expected ServiceRegistry with key" + ActivitiConstants.SERVICE_REGISTRY_BEAN_KEY);
}
return registry;
}
throw new IllegalStateException("No ProcessEngineConfiguration found in active context");
}
public void writeToCatalina() {
PersonService personService = getServiceRegistry().getPersonService();
System.out.println("test");
String name = AuthenticationUtil.getFullyAuthenticatedUser();
System.out.println(name);
NodeRef personRef = personService.getPerson(name);
System.out.println(personRef);
}
しかし、私は得ました:
アクティブなコンテキストで ProcessEngineConfiguration が見つかりません
助けて !