我们的Webflow(2.3.1)应用程序为我们通过浏览器打开的每个新流量申请了大量内存。
下面的屏幕截图显示了我们的应用程序的内存使用情况。当应用程序启动时,它需要一个初始的400 Mb。之后,我们在浏览器中打开4个相同的Webflow TEST页面,每个页面声称大约有90Mb的额外内存。
每个测试页面都是从它自己的简单流程定义开始的:
<?xml version="1.0" encoding="UTF-8"?>
<flow xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/webflow"
xsi:schemaLocation="http://www.springframework.org/schema/webflow
http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd" start-state="start">
<view-state id="start" view="test/test1">
</view-state>
<end-state id="end"/>
<bean-import resource="../flow-beans.xml"/>
</flow>
JSP测试页面也非常简单,只有一行文本为空。
当我们当前将JVM内存设置为1.5Gb时,应用程序最终在打开大约15个不同的流后在OutOfMemoryExceptions上崩溃。对于我们屏幕的低复杂性,1.5 Gb似乎有点多了。
我们想知道Webflow似乎是否期望这些简单的流/页面的内存量,以及我们是否应该为服务器JVM分配更多内存。如果没有,我们想知道如何减少内存使用量。
以下是我们的整个网络流配置。
我们尝试添加一个flow-execution-repository标记并使用max-executions-snapshots和max-executions值,但即使是最保守的设置也不会改变我们看到的内存使用情况。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:webflow="http://www.springframework.org/schema/webflow-config"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/webflow-config
http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.3.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
<!-- Launches new flow executions and resumes existing executions. -->
<webflow:flow-executor id="flowExecutor" flow-registry="flowRegistry">
</webflow:flow-executor>
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:our.properties" />
<property name="placeholderPrefix" value="$xxxx"></property>
</bean>
<tx:annotation-driven transaction-manager="$xxxx{txManager}" />
<!-- Creates the registry of flow definitions for this application -->
<webflow:flow-registry id="flowRegistry" flow-builder-services="flowBuilderServices">
<webflow:flow-location-pattern value="classpath:flows/**/*-flow.xml" />
</webflow:flow-registry>
<bean id="viewFactoryCreator" class="org.springframework.webflow.mvc.builder.MvcViewFactoryCreator">
<property name="viewResolvers" ref="viewResolver" />
</bean>
<bean id="expressionParser" class="org.springframework.expression.spel.standard.SpelExpressionParser">
<constructor-arg name="configuration">
<bean class="org.springframework.expression.spel.SpelParserConfiguration">
<constructor-arg name="autoGrowCollections" value="true" />
<constructor-arg name="autoGrowNullReferences" value="false" />
</bean>
</constructor-arg>
</bean>
<bean id="webflowExpressionParser" class="org.springframework.webflow.expression.spel.WebFlowSpringELExpressionParser">
<constructor-arg name="expressionParser" ref="expressionParser" />
</bean>
<webflow:flow-builder-services id="flowBuilderServices" view-factory-creator="viewFactoryCreator" validator="validator" expression-parser="webflowExpressionParser"/>
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean" />
<bean id="projectVersion" class="our.company.versions.ProjectVersionUtil">
<property name="xxxxVersion" value="$xxxx{xxxx.version}" />
<property name="systemConfigurationDao">
<ref bean="SystemConfigurationDao"/>
</property>
</bean>
</beans>
答案 0 :(得分:2)
当Spring Web Flow启动新流程时,它基本上构造了一个新的BeanFactory
,它加载xml文件并导入任何其他xml文件。新构造的BeanFactory
具有DispatcherServlet
作为其父级的上下文。
现在问题在于bean工厂构造了所有bean的实例,甚至是在导入的XML文件中定义的bean。
<bean-import resource="../flow-beans.xml"/>
如果那里有很多bean,那么每个流实例都会重复这些bean。一般而言,您不希望所有的bean都被复制并存储在用户会话中。
从flow-beans.xml
中删除单例bean并将它们放在正常的应用程序上下文中,它们仍然可以在流程定义中引用。或者您只需将flow-beans.xml
添加到应用程序启动时加载的文件列表中。