春にはAlfresco文書管理システムの新機能ですが、以前はAlfrescoのアクティビティワークフローを行っていました。私はSpringでAlfresco DMSを開発したいと思っています。Alfresco Springアプリケーションでの文書管理システム
私はサンプルモデルアプリケーションまたは関連WebサイトのURLを私に送信してください。
ありがとうございます。
春にはAlfresco文書管理システムの新機能ですが、以前はAlfrescoのアクティビティワークフローを行っていました。私はSpringでAlfresco DMSを開発したいと思っています。Alfresco Springアプリケーションでの文書管理システム
私はサンプルモデルアプリケーションまたは関連WebサイトのURLを私に送信してください。
ありがとうございます。
場合、あなたはあなただけのServerUrl
、Username
とPassword
を追加する必要があなたの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(); }
に接続したい
あなたは[てみました(デフォルトでは、それは
admin
、admin
になります) Alfresco開発者とドキュメンテーションのサイト](http://docs.alfresco.com/)?そして[Alfresco Wiki](http://wiki.alfresco.com/)? – Gagravarrあなたのアプリケーションを 'Alfresco'に接続しますか? –
はい、私はalfrescoにアプリケーションを接続したい – Manohar