2016-07-19 17 views
-1

春にはAlfresco文書管理システムの新機能ですが、以前はAlfrescoのアクティビティワークフローを行っていました。私はSpringでAlfresco DMSを開発したいと思っています。Alfresco Springアプリケーションでの文書管理システム

私はサンプルモデルアプリケーションまたは関連WebサイトのURLを私に送信してください。

ありがとうございます。

+0

あなたは[てみました(デフォルトでは、それはadminadminになります) Alfresco開発者とドキュメンテーションのサイト](http://docs.alfresco.com/)?そして[Alfresco Wiki](http://wiki.alfresco.com/)? – Gagravarr

+0

あなたのアプリケーションを 'Alfresco'に接続しますか? –

+0

はい、私はalfrescoにアプリケーションを接続したい – Manohar

答えて

0

場合、あなたはあなただけのServerUrlUsernamePasswordを追加する必要があなたの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(); } 

に接続したい

+0

別の方法が必要かどうか教えてください(すべての方法を1つの投稿に共有することは不可能です)例:ファイルをアップロードする方法が必要です。 –

+0

ServerUrlは、https:// localhost:9494 /が十分であることを意味します。 – Manohar

+0

この例をメールに送信してください。[email protected] – Manohar

関連する問題