我是春天的Alfresco文档管理系统的新手,但我之前已经完成了Alfresco活动工作流程。我想在Spring开发Alfresco DMS。
任何机构都这样做请发给我样品模型应用程序或相关的网站网址。
谢谢。
答案 0 :(得分:0)
如果您想连接到Alfresco存储库
private static Session getSession(String serverUrl, String username, String password) {SessionFactory sessionFactory = SessionFactoryImpl.newInstance();
Map<String, String> params = new HashMap<>();
params.put(SessionParameter.USER, username);
params.put(SessionParameter.PASSWORD, password);
params.put(SessionParameter.ATOMPUB_URL, serverUrl);
params.put(SessionParameter.BINDING_TYPE, BindingType.ATOMPUB.value());
List<Repository> repos = sessionFactory.getRepositories(params);
if (repos.isEmpty()) {
throw new RuntimeException("Server has no repositories!");
}
return repos.get(0).createSession(); }
您只需添加ServerUrl
,Username
和Password
(默认情况下会admin
,admin
)