Alfresco 2.0 解读

阅读更多

Alfresco 2.0 解读

一、介绍:
http://www.alfresco.com
Alfresco is the Open Source Alternative for Enterprise Content Management (ECM), providing Document Management, Collaboration, Records Management, Knowledge Management, Web Content Management and Imaging.

采用的技术
Java
Spring  Aspect-Oriented Framework
ACEGI – Aspect-Oriented Security Framework
MyFaces  JSF Implementation
Hibernate  ORM Persistence
Lucene  Text Search Engine
JLAN
POI File Format Conversion
PDFBox – PDF Conversion
OpenOffice
jBPM
Rhino JavaScript engine
支持的接口
CIFS/SMB Microsoft File Share Protocol
JSR-168 Portlet Specification
JSR-127 Java Server Faces
FTP
WebDAV
Web Services
REST
更多的技术规范详见: http://www.alfresco.com/products/ecm/specifications/

二、配置解读
1、从web.xml开始入手
其它的略过,在 web.xml 中可以看到加载了如下 Spring 配置文件

xml 代码

 

  1. <context-param>  
  2.    <param-name>contextConfigLocationparam-name>  
  3.    <param-value>  
  4.       classpath:alfresco/web-client-application-context.xml   
  5.       classpath:web-services-application-context.xml   
  6.       classpath:alfresco/web-api-application-context.xml   
  7.       classpath:alfresco/application-context.xml    
  8.    param-value>  
  9.    <description>Spring config file locationsdescription>  
  10. context-param>  

web client 层
alfresco/web-client-application-context.xml
打开它可以看到它引入了所有的 alfresco/web-client*.xml & alfresco/extension/web-client*.xml & jar:*!/META-INF/web-client*.xml

web api 层
alfresco/web-api-application-context.xml
打开它可以看到它引入了 alfresco/web-api-config.xml & alfresco/extension/web-api-config-custom.xml

web service 层
web-services-application-context.xml
刚开始找这个文件时,居然没有找到,怪事!not exist???why?
于是后来才发现这个文件是在 remote-api.jar 包里,晕,不是很好的做法啊。

...................... 


在这里编辑太慢了而且比较乱,索性还是自己做成PDF上传了

  • AlfrescoDatabase.rar (72.5 KB)
  • 描述: Alfresco Database Model
  • 下载次数: 751
  • Alfresco2.0.rar (137.2 KB)
  • 描述: Alfresco2.0
  • 下载次数: 813

你可能感兴趣的:(Web,Weblogic,XML,Spring,Acegi)