我已经创建了一个自定义操作,作为一个eclipse项目。我把它打包在一个罐子里,放在:alfresco-3.4.d/tomcat/webapps/alfresco/WEB-INF/lib
我开始了Alfresco,我用我的自定义动作创建了一个规则。当在此文件夹中创建文件时,则触发该规则。
但是当我创建一个文件时,唯一可用的类型是"content",我的自定义内容类型不显示在选择列表中。我的问题是我需要这些自定义类型。
我已经测试了没有我的jar启动Alfresco,所有类型都可用。
我的项目结构是错误的?:
src.main.java
-executer
·UrlActionExecuter.java
·UrlActionHandler.java
src.main.resources
-alfresco.extension
·url-actions-context.xml
·web-client-config-custom.xml
·webclient.properties
src.main.webapp
-jsp.actions
·url-action-executer.jsp
build . xml呢?:
<?xml version="1.0"?>
<project name="Action Url" default="package" basedir=".">
<property name="project.dir" value="."/>
<property name="build.dir" value="${project.dir}/build"/>
<property name="package.file" value="${build.dir}/Action-url.jar"/>
<path id="class.path">
<dirset dir="${build.dir}" />
<fileset dir="../../lib/server" includes="**/*.jar"/>
</path>
<target name="compile">
<mkdir dir="${build.dir}" />
<javac classpathref="class.path" srcdir="${project.dir}/src" destdir="${build.dir}" />
</target>
<target name="package" >
<jar destfile="${package.file}">
<fileset dir="${build.dir}"/>
</jar>
</target>
</project>
谢谢大家!
您的自定义类型应该在模型文件中描述,然后您应该将您的模型导入到alfresco,例如:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<bean id="custom_dictionaryBootstrap"
parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
<property name="models">
<list>
<value>alfresco/module/mymodule/model/mymodel.xml</value>
</list>
</property>
<property name="labels">
<list>
<value>alfresco/module/mymodule/messages/system</value>
</list>
</property>
</bean>
</beans>