나는 리포지토리를 가지고 있으며 알 프레스코 웹 사이트를 통해 리포지토리에 폴더를 만들 때 이름, 제목 및 설명을 설정할 수 있습니다.커뮤니티 Alfresco에서 제목과 설명을 설정하는 방법은 무엇입니까?
opencmis java를 통해 동일한 파일을 만들려고하면 "이 속성은 '속성'cmis : title '이 유효하지 않습니다. "설명 cm를"하지만 그 중 하나가 작동하지 않습니다
Map<String, String> newFolderProps = new HashMap<String, String>();
newFolderProps.put(PropertyIds.NAME, "this is my new folder");
newFolderProps.put("cmis:description", "this is my description"); //this doesn't work.
newFolderProps.put("cmis:title", "this is my title"); //this doesn't work.
//I also tried this too:
newFolderProps.put(PropertyIds.DESCRIPTION, "this is my description"); //this doesn't work either.
newFolderProps.put(PropertyIds.OBJECT_TYPE_ID, "cmis:folder"); //this works!
Folder newFolderObject=rootfolder.createFolder(newFolderProps);
가 나는 또한 시도 :
여기 내 코드입니다.
Alfresco에서 새 폴더를 만들 때 제목과 설명을 어떻게 설정합니까?
이 코드는 http://chemistry.apache.org/java/developing/guide.html#getting-started-with-opencmis – user2624246