未创建<int:gateway>的Spring Integration网关代理bean

时间:2015-06-24 06:39:20

标签: java spring spring-integration

我有一个上下文

last_insert_id();

我的网关界面如下:

<?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:int="http://www.springframework.org/schema/integration"
  xmlns:int-amqp="http://www.springframework.org/schema/integration/amqp"
  xmlns:rabbit="http://www.springframework.org/schema/rabbit"
  xsi:schemaLocation="http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
        http://www.springframework.org/schema/integration/amqp
        http://www.springframework.org/schema/integration/amqp/spring-integration-amqp.xsd
        http://www.springframework.org/schema/rabbit
        http://www.springframework.org/schema/rabbit/spring-rabbit.xsd
        http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans.xsd">

  <int:gateway id="fooGateway" service-interface="com.foo.FooGateway"  />

</beans>

此上下文被导入到另一个上下文中,但fooGateway bean从未由GatewayProxyFactoryBean创建。

我在GatewayProxyFactoryBean中设置了一个断点,我可以看到它没有为这个接口创建代理。

1 个答案:

答案 0 :(得分:0)

启用org.springframework的DEBUG记录; bean创建过程会发出大量信息,包括何时读取特定的配置文件。

相关问题