我目前正在开发使用spring作为框架和alfresco作为ged的java / jee应用程序。我正在使用apache化学连接到alfresco存储库。 这是我用来获取会话的代码。
有没有办法用spring bean更改这段代码,因为我要在不同的类中使用这个会话,最好是单例。
Map<String, String> parameter = new HashMap<String, String>();
// user credentials
parameter.put(SessionParameter.USER, "admin");
parameter.put(SessionParameter.PASSWORD, "admin");
// connection settings
parameter.put(SessionParameter.ATOMPUB_URL, "http://localhost:8080/alfresco/cmisatom");
parameter.put(SessionParameter.BINDING_TYPE, BindingType.ATOMPUB.value());
System.out.println(BindingType.ATOMPUB.value());
// set the alfresco object factory
parameter.put(SessionParameter.OBJECT_FACTORY_CLASS, "org.alfresco.cmis.client.impl.AlfrescoObjectFactoryImpl");
// create session
SessionFactory factory = SessionFactoryImpl.newInstance();
Session session = factory.getRepositories(parameter).get(0).createSession();
答案 0 :(得分:1)
只需将其声明为bean:
@Bean
public Session sessionBean() {
Map<String, String> parameter = new HashMap<String, String>();
// ...
SessionFactory factory = SessionFactoryImpl.newInstance();
Session session = factory.getRepositories(parameter).get(0).createSession();
return session;
}
因此,您可以在任何需要的地方注入此会话bean。