在Alfresco中找不到类org.alfresco.web.config.WebClientConfigBootstrap

时间:2019-05-23 09:11:57

标签: alfresco alfresco-maven

不在ide Eclipse中为Alfresco 5.2构建应用。

如何解决?

尝试构建应用程序后的错误日志:

FAILURE! - in com.eisenvault.demoamp.test.DemoComponentTest
testChildNodesCount(com.eisenvault.demoamp.test.DemoComponentTest)  Time elapsed: 12.924 sec  <<< ERROR!
java.lang.IllegalStateException: Failed to load ApplicationContext
Caused by: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.alfresco.web.config.WebClientConfigBootstrap] for bean with name 'ev-esign-repo_pdftoolkit-esign-configBootstrap' defined in file [C:\Users\MIR-IT\Documents\eisenvault-esign-master\eisenvault-esign-master\ev-esign-repo\target\test-classes\alfresco\module\org.alfresco.extension.addimages\module-context.xml]; nested exception is java.lang.ClassNotFoundException: org.alfresco.web.config.WebClientConfigBootstrap
Caused by: java.lang.ClassNotFoundException: org.alfresco.web.config.WebClientConfigBootstrap

为什么程序无法找到org.alfresco.web.config.WebClientConfigBootstrap

如何连接org.alfresco.web.config.WebClientConfigBootstrap类?

文件module-context.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!-- Bean action definitions -->
    <import resource="classpath:alfresco/module/org.alfresco.extension.addimages/context/alfresco-pdf-addimages-context.xml" />

    <!--  iText transformers -->
    <import resource="classpath:alfresco/module/org.alfresco.extension.addimages/context/service-context.xml" />

    <!-- load the custom content model -->
    <bean id="ev-esign-repo_pdftoolkit-esign-model" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
        <property name="models">
            <list>
                <value>alfresco/module/org.alfresco.extension.addimages/model/addImagesModel1.xml</value>
            </list>
        </property>
    </bean>

    <!-- Load the UI customizations -->
    <bean id="ev-esign-repo_pdftoolkit-esign-configBootstrap" class="org.alfresco.web.config.WebClientConfigBootstrap"
        init-method="init">
        <property name="configs">
            <list>
                <value>classpath:alfresco/module/org.alfresco.extension.addimages/ui/web-client-config-custom.xml</value>
            </list>
        </property>
    </bean>

</beans>

1 个答案:

答案 0 :(得分:0)

很难从代码中看出来,但是似乎您正在尝试从repo(alfresco.war)上下文中使用Web客户端执行某些操作。与Web客户端有关的任何事情都应该在Share(share.war)上下文中进行。

唯一的例外是,如果您尝试使用古老的Explorer客户端执行某项操作,但是该Web客户端在5.2中不可用。