我尝试使用spring-integration工作来获得我的spring应用程序。
但不幸的是。一旦我将Spring-integration添加到我的应用程序中,一旦启动它,我就会得到PermGen Space错误。
我在tomcat 7上使用Spring版本3.2.3和Spring集成Verison 2.2.3。 我已经将permsize更改为512m,这并没有解决问题。 XX:MaxPermSize参数=512米
在我的spring环境中,我只尝试创建一个客户端连接:
<beans>
<int:gateway id="gw"
service-interface="com.example.tcpclientserver.SimpleGateway"
default-request-channel="input"/>
<int-ip:tcp-connection-factory id="client"
type="client"
host="10.10.1.2"
port="2001"
single-use="true"
so-timeout="10000"/>
<int:channel id="input" />
<int-ip:tcp-outbound-gateway id="outGateway"
request-channel="input"
reply-channel="clientBytes2StringChannel"
connection-factory="client"
request-timeout="10000"
reply-timeout="10000"/>
<int:transformer id="clientBytes2String"
input-channel="clientBytes2StringChannel"
expression="new String(payload)"/>
</beans>
知道可能出现什么问题吗?