12-29-2008 06:48 AM
12-29-2008 02:09 PM
Which is the best way to perform this? Must I use the WebService and / or WebScripts to integrate Alfresco with a new web application that we would need to develop? Or shall we create Alfresco's new modules with the new functionalities and integrate them in the jsp code of the Alfresco pages we can develop and adapt?
How does Alfresco connect to the database? Is there any documentation I can check to see how I can expand Alfresco's db adding new tables and accessing them from the Alfresco Application?
09-18-2009 11:25 AM
<bean id="transactionManagerNew" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="transactionSynchronizationName">
<value>SYNCHRONIZATION_ALWAYS</value>
</property>
<property name="sessionFactory">
<ref bean="sessionFactoryNew" />
</property>
</bean>
<bean id="sessionFactoryNew" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource"><ref local="myDataSource" /></property>
<!– Must references all OR mapping files. –>
<property name="mappingResources">
<list>
<value>org/new/hibernate/mapping/Dossier.hbm.xml</value>
…
</list>
</property>
<property name="schemaUpdate"><value>false</value></property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</prop>
<prop key="hibernate.connection.pool_size">1</prop>
<prop key="hibernate.hbm2ddl.auto">false</prop>
<prop key="hibernate.show_sql">false</prop>
</props>
</property>
</bean>
<property name="transactionManager"><ref local="transactionManagerNew"/></property>
03-11-2010 12:12 PM
10-13-2010 09:35 AM
10-19-2011 07:40 AM
the quickest and easiest way to get an initial solution up and running would be to create an Alfresco module.
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.