1

那里!我使用springactionscript 1.0RC1,发现错误如下:

错误:找不到名为“org.springextensions.actionscript.ioc.factory.config.flex.FlexPropertyPlaceholderConfigurer”的类。你确定指定的类已经编译了吗?在此处查找有关此主题的更多信息: http ://www.springactionscript.org/do...inclusion.html

我的 applicationContext.xml 是

<objects>
    <property file="config.properties" required="false" />
    <object id="constants" class="com.libsys.utils.Constants">
        <property name="endpoint" value="${endpoint}" />
    </object> 
</objects>

如果 xml 文件没有属性文件,它可以正常工作。我不知道这是怎么回事,你能告诉我怎么解决吗?谢谢!

顺便说一句,我的编译器版本是 4.1.0.14632,springactionscrip 是 1.0RC1。

4

1 回答 1

0

您如何加载应用程序上下文?使用 XMLApplicationContext 还是使用 FlexXMLApplicationContext?

如果您使用后者,则 FlexPropertyPlaceholderConfigurer 应该包含在库中,并且您应该不会收到此错误。如果您使用的是 XMLApplicationContext,那么只需确保您在代码中的某处引用了 FlexPropertyPlaceholderConfigurer,以便对其进行编译。

例如在您的主要课程中:

private static var compiledClasses:Array = [FlexPropertyPlaceholderConfigurer];
于 2010-03-22T07:57:02.770 回答