Spring integration 自动启动后启动SftpFileSynchronizingMessageSource=";假;

Spring integration 自动启动后启动SftpFileSynchronizingMessageSource=";假;,spring-integration,spring-integration-sftp,Spring Integration,Spring Integration Sftp,我对spring集成(-sftp)还很陌生。 我在SftpInboundFileSynchronizingMessageSource的@InboundChannelAdapter-注释中使用autoStartup=false,以避免在本地目录不为空时出现一系列异常 在没有控制总线模式的情况下,如何在事后启动MessageSource // Class Annotations @Configuration @EnableIntegration @ContextConfiguration(class

我对spring集成(-sftp)还很陌生。
我在SftpInboundFileSynchronizingMessageSource的
@InboundChannelAdapter
-注释中使用
autoStartup=false
,以避免在本地目录不为空时出现一系列异常

在没有控制总线模式的情况下,如何在事后启动MessageSource

// Class Annotations
@Configuration
@EnableIntegration
@ContextConfiguration(classes = SftpReadTest.class)
@RunWith(SpringJUnit4ClassRunner.class)

/*
* Omitted Beans: sessionFactory, synchronizer, messageSource and messageHandler
*/

// Method with which I try to start the the MessageSource
public void startAdapter() {
    ConfigurableApplicationContext ctx = new 
        AnnotationConfigApplicationContext(this.getClass());
    SftpInboundFileSynchronizingMessageSource messageSource = 
        ctx.getBean("sftpInboundMessageSource", 
        SftpInboundFileSynchronizingMessageSource.class);
    messageSource.start();
}

// Test method
@Test
public void test() throws Exception {
    // given
    File testFile = create(REMOTE_DIR);
    // when
    startAdapter();
    int loopCounter = 0;
    while (!new File(LOCAL_DIR, testFile.getName()).exists()
        && loopCounter++ < 99) {
        Thread.sleep(100);
    }
    log.info("{} looped", loopCounter);
    // then
    assertThat(new File(LOCAL_DIR, testFile.getName()).exists(), is(true));
}
//类注释
@配置
@使能集成
@ContextConfiguration(class=SftpReadTest.class)
@RunWith(SpringJUnit4ClassRunner.class)
/*
*省略的bean:sessionFactory、同步器、messageSource和messageHandler
*/
//尝试启动MessageSource的方法
公共无效startAdapter(){
ConfigurableApplicationContext ctx=新建
AnnotationConfigApplicationContext(this.getClass());
SftpInboundFileSynchronizingMessageSource消息源=
getBean(“sftpInboundMessageSource”,
SftpInboundFileSynchronizingMessageSource.class);
messageSource.start();
}
//试验方法
@试验
public void test()引发异常{
//给定
文件testFile=create(远程目录);
//什么时候
startAdapter();
int循环计数器=0;
当(!new File(LOCAL_DIR,testFile.getName()).exists()存在时
&&loopCounter++<99){
睡眠(100);
}
log.info(“{}循环”,循环计数器);
//然后
断言(新文件(LOCAL_DIR,testFile.getName()).exists(),is(true));
}
这是我最后一次尝试。似乎MessageSource启动了,但没有传输任何文件

2016-12-07 18:22:28,829 INFO  Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] org.springframework.test.context.support.AbstractTestContextBootstrapper.getDefaultTestExecutionListenerClassNames(AbstractTestContextBootstrapper.java:260) [main] []
2016-12-07 18:22:28,862 INFO  Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6c3f5566, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@12405818, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@314c508a, org.springframework.test.context.support.DirtiesContextTestExecutionListener@10b48321, org.springframework.test.context.transaction.TransactionalTestExecutionListener@6b67034, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@16267862] org.springframework.test.context.support.AbstractTestContextBootstrapper.getTestExecutionListeners(AbstractTestContextBootstrapper.java:187) [main] []
2016-12-07 18:22:28,917 INFO  Using open server port...22                                       com.example.SftpServer.start(SftpServer.java:36) [main] []
2016-12-07 18:22:29,325 INFO  Trying to register BouncyCastle as a JCE provider                 org.apache.sshd.common.util.SecurityUtils$BouncyCastleRegistration.call(SecurityUtils.java:287) [main] []
2016-12-07 18:22:29,769 INFO  Registration succeeded                                            org.apache.sshd.common.util.SecurityUtils$BouncyCastleRegistration.call(SecurityUtils.java:291) [main] []
2016-12-07 18:22:30,023 INFO  Refreshing org.springframework.context.support.GenericApplicationContext@4d48bd85: startup date [Wed Dec 07 18:22:30 CET 2016]; root of context hierarchy org.springframework.context.support.AbstractApplicationContext.prepareRefresh(AbstractApplicationContext.java:581) [main] []
2016-12-07 18:22:30,088 INFO  Loading properties file from URL [jar:file:/C:/dev/maven/maven-repo/org/springframework/integration/spring-integration-core/4.3.0.RELEASE/spring-integration-core-4.3.0.RELEASE.jar!/META-INF/spring.integration.default.properties] org.springframework.core.io.support.PropertiesLoaderSupport.loadProperties(PropertiesLoaderSupport.java:172) [main] []
2016-12-07 18:22:30,093 INFO  No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created. org.springframework.integration.config.IntegrationRegistrar.registerHeaderChannelRegistry(IntegrationRegistrar.java:330) [main] []
2016-12-07 18:22:30,230 INFO  No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created. org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor.registerErrorChannel(DefaultConfiguringBeanFactoryPostProcessor.java:130) [main] []
2016-12-07 18:22:30,239 INFO  No bean named 'taskScheduler' has been explicitly defined. Therefore, a default ThreadPoolTaskScheduler will be created. org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor.registerTaskScheduler(DefaultConfiguringBeanFactoryPostProcessor.java:158) [main] []
2016-12-07 18:22:30,248 INFO  JSR-330 'javax.inject.Inject' annotation found and supported for autowiring org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.<init>(AutowiredAnnotationBeanPostProcessor.java:156) [main] []
2016-12-07 18:22:30,349 INFO  Loading properties file from URL [jar:file:/C:/dev/maven/maven-repo/org/springframework/integration/spring-integration-core/4.3.0.RELEASE/spring-integration-core-4.3.0.RELEASE.jar!/META-INF/spring.integration.default.properties] org.springframework.core.io.support.PropertiesLoaderSupport.loadProperties(PropertiesLoaderSupport.java:172) [main] []
2016-12-07 18:22:30,350 INFO  Bean 'integrationGlobalProperties' of type [class org.springframework.beans.factory.config.PropertiesFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate.java:328) [main] []
2016-12-07 18:22:30,360 INFO  Bean 'integrationGlobalProperties' of type [class java.util.Properties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate.java:328) [main] []
testDir/asd
2016-12-07 18:22:30,837 INFO  Initializing ExecutorService  'taskScheduler'                     org.springframework.scheduling.concurrent.ExecutorConfigurationSupport.initialize(ExecutorConfigurationSupport.java:165) [main] []
2016-12-07 18:22:30,996 INFO  Starting beans in phase -2147483648                               org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:341) [main] []
2016-12-07 18:22:30,997 INFO  Adding {message-handler:sftpReadTest.messageHandler.serviceActivator} as a subscriber to the 'inboundChannel' channel org.springframework.integration.endpoint.EventDrivenConsumer.logComponentSubscriptionEvent(EventDrivenConsumer.java:108) [main] []
2016-12-07 18:22:30,998 INFO  Channel 'org.springframework.context.support.GenericApplicationContext@4d48bd85.inboundChannel' has 1 subscriber(s). org.springframework.integration.channel.AbstractSubscribableChannel.adjustCounterIfNecessary(AbstractSubscribableChannel.java:69) [main] []
2016-12-07 18:22:30,998 INFO  started sftpReadTest.messageHandler.serviceActivator              org.springframework.integration.endpoint.AbstractEndpoint.start(AbstractEndpoint.java:97) [main] []
2016-12-07 18:22:30,998 INFO  Starting beans in phase 0                                         org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:341) [main] []
2016-12-07 18:22:30,998 INFO  Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel org.springframework.integration.endpoint.EventDrivenConsumer.logComponentSubscriptionEvent(EventDrivenConsumer.java:108) [main] []
2016-12-07 18:22:30,999 INFO  Channel 'org.springframework.context.support.GenericApplicationContext@4d48bd85.errorChannel' has 1 subscriber(s). org.springframework.integration.channel.AbstractSubscribableChannel.adjustCounterIfNecessary(AbstractSubscribableChannel.java:69) [main] []
2016-12-07 18:22:30,999 INFO  started _org.springframework.integration.errorLogger              org.springframework.integration.endpoint.AbstractEndpoint.start(AbstractEndpoint.java:97) [main] []
2016-12-07 18:22:31,051 INFO  Method: StartAdapter                                              com.example.SftpReadTest.startAdapter(SftpReadTest.java:106) [main] []
2016-12-07 18:22:31,066 INFO  Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@1afd72ef: startup date [Wed Dec 07 18:22:31 CET 2016]; root of context hierarchy org.springframework.context.support.AbstractApplicationContext.prepareRefresh(AbstractApplicationContext.java:581) [main] []
2016-12-07 18:22:31,077 INFO  No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created. org.springframework.integration.config.IntegrationRegistrar.registerHeaderChannelRegistry(IntegrationRegistrar.java:330) [main] []
2016-12-07 18:22:31,084 INFO  No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created. org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor.registerErrorChannel(DefaultConfiguringBeanFactoryPostProcessor.java:130) [main] []
2016-12-07 18:22:31,085 INFO  No bean named 'taskScheduler' has been explicitly defined. Therefore, a default ThreadPoolTaskScheduler will be created. org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor.registerTaskScheduler(DefaultConfiguringBeanFactoryPostProcessor.java:158) [main] []
2016-12-07 18:22:31,086 INFO  JSR-330 'javax.inject.Inject' annotation found and supported for autowiring org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.<init>(AutowiredAnnotationBeanPostProcessor.java:156) [main] []
2016-12-07 18:22:31,106 INFO  Loading properties file from URL [jar:file:/C:/dev/maven/maven-repo/org/springframework/integration/spring-integration-core/4.3.0.RELEASE/spring-integration-core-4.3.0.RELEASE.jar!/META-INF/spring.integration.default.properties] org.springframework.core.io.support.PropertiesLoaderSupport.loadProperties(PropertiesLoaderSupport.java:172) [main] []
2016-12-07 18:22:31,107 INFO  Bean 'integrationGlobalProperties' of type [class org.springframework.beans.factory.config.PropertiesFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate.java:328) [main] []
2016-12-07 18:22:31,107 INFO  Bean 'integrationGlobalProperties' of type [class java.util.Properties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate.java:328) [main] []
testDir/asd
2016-12-07 18:22:31,201 INFO  Initializing ExecutorService  'taskScheduler'                     org.springframework.scheduling.concurrent.ExecutorConfigurationSupport.initialize(ExecutorConfigurationSupport.java:165) [main] []
2016-12-07 18:22:31,331 INFO  Starting beans in phase -2147483648                               org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:341) [main] []
2016-12-07 18:22:31,332 INFO  Adding {message-handler:sftpReadTest.messageHandler.serviceActivator} as a subscriber to the 'inboundChannel' channel org.springframework.integration.endpoint.EventDrivenConsumer.logComponentSubscriptionEvent(EventDrivenConsumer.java:108) [main] []
2016-12-07 18:22:31,338 INFO  Channel 'org.springframework.context.annotation.AnnotationConfigApplicationContext@1afd72ef.inboundChannel' has 1 subscriber(s). org.springframework.integration.channel.AbstractSubscribableChannel.adjustCounterIfNecessary(AbstractSubscribableChannel.java:69) [main] []
2016-12-07 18:22:31,339 INFO  started sftpReadTest.messageHandler.serviceActivator              org.springframework.integration.endpoint.AbstractEndpoint.start(AbstractEndpoint.java:97) [main] []
2016-12-07 18:22:31,339 INFO  Starting beans in phase 0                                         org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:341) [main] []
2016-12-07 18:22:31,339 INFO  Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel org.springframework.integration.endpoint.EventDrivenConsumer.logComponentSubscriptionEvent(EventDrivenConsumer.java:108) [main] []
2016-12-07 18:22:31,340 INFO  Channel 'org.springframework.context.annotation.AnnotationConfigApplicationContext@1afd72ef.errorChannel' has 1 subscriber(s). org.springframework.integration.channel.AbstractSubscribableChannel.adjustCounterIfNecessary(AbstractSubscribableChannel.java:69) [main] []
2016-12-07 18:22:31,340 INFO  started _org.springframework.integration.errorLogger              org.springframework.integration.endpoint.AbstractEndpoint.start(AbstractEndpoint.java:97) [main] []
2016-12-07 18:22:31,342 INFO  Bean: org.springframework.context.annotation.internalConfigurationAnnotationProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,343 INFO  Bean: org.springframework.context.annotation.internalAutowiredAnnotationProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,343 INFO  Bean: org.springframework.context.annotation.internalRequiredAnnotationProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,343 INFO  Bean: org.springframework.context.annotation.internalCommonAnnotationProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,344 INFO  Bean: org.springframework.context.event.internalEventListenerProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,344 INFO  Bean: org.springframework.context.event.internalEventListenerFactory com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,344 INFO  Bean: sftpReadTest                                                com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,344 INFO  Bean: org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,344 INFO  Bean: org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,345 INFO  Bean: sessionFactory                                              com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,345 INFO  Bean: sftpInboundMessageSource                                    com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,345 INFO  Bean: sftpFileSynchronizer                                        com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,345 INFO  Bean: messageHandler                                              com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,345 INFO  Bean: channelInitializer                                          com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,346 INFO  Bean: $autoCreateChannelCandidates                                com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,346 INFO  Bean: IntegrationConfigurationBeanFactoryPostProcessor            com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,346 INFO  Bean: integrationEvaluationContext                                com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,346 INFO  Bean: org.springframework.integration.expression.IntegrationEvaluationContextAwareBeanPostProcessor#0 com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,346 INFO  Bean: integrationGlobalProperties                                 com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,346 INFO  Bean: integrationHeaderChannelRegistry                            com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,346 INFO  Bean: globalChannelInterceptorProcessor                           com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,347 INFO  Bean: DefaultConfiguringBeanFactoryPostProcessor                  com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,347 INFO  Bean: datatypeChannelMessageConverter                             com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,347 INFO  Bean: org.springframework.integration.internalMessagingAnnotationPostProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,347 INFO  Bean: org.springframework.integration.internalPublisherAnnotationBeanPostProcessor com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,347 INFO  Bean: messageBuilderFactory                                       com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,347 INFO  Bean: integrationLifecycleRoleController                          com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,348 INFO  Bean: nullChannel                                                 com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,348 INFO  Bean: errorChannel                                                com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,348 INFO  Bean: _org.springframework.integration.errorLogger.handler        com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,348 INFO  Bean: _org.springframework.integration.errorLogger                com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,348 INFO  Bean: taskScheduler                                               com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:31,348 INFO  Bean: org.springframework.integration.config.IdGeneratorConfigurer#0 com.example.SftpReadTest.lambda$1(SftpReadTest.java:108) [main] []
2016-12-07 18:22:43,251 INFO  100 mal geloopt                                                   com.example.SftpReadTest.test(SftpReadTest.java:141) [main] []
2016-12-07 18:22:43,328 INFO  Closing org.springframework.context.support.GenericApplicationContext@4d48bd85: startup date [Wed Dec 07 18:22:30 CET 2016]; root of context hierarchy org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:982) [Thread-1] []
2016-12-07 18:22:43,329 INFO  Stopping beans in phase 0                                         org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.stop(DefaultLifecycleProcessor.java:356) [Thread-1] []
2016-12-07 18:22:43,330 INFO  Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel org.springframework.integration.endpoint.EventDrivenConsumer.logComponentSubscriptionEvent(EventDrivenConsumer.java:108) [Thread-1] []
2016-12-07 18:22:43,331 INFO  Channel 'org.springframework.context.support.GenericApplicationContext@4d48bd85.errorChannel' has 0 subscriber(s). org.springframework.integration.channel.AbstractSubscribableChannel.adjustCounterIfNecessary(AbstractSubscribableChannel.java:69) [Thread-1] []
2016-12-07 18:22:43,331 INFO  stopped _org.springframework.integration.errorLogger              org.springframework.integration.endpoint.AbstractEndpoint.stop(AbstractEndpoint.java:131) [Thread-1] []
2016-12-07 18:22:43,331 INFO  Stopping beans in phase -2147483648                               org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.stop(DefaultLifecycleProcessor.java:356) [Thread-1] []
2016-12-07 18:22:43,331 INFO  Removing {message-handler:sftpReadTest.messageHandler.serviceActivator} as a subscriber to the 'inboundChannel' channel org.springframework.integration.endpoint.EventDrivenConsumer.logComponentSubscriptionEvent(EventDrivenConsumer.java:108) [Thread-1] []
2016-12-07 18:22:43,331 INFO  Channel 'org.springframework.context.support.GenericApplicationContext@4d48bd85.inboundChannel' has 0 subscriber(s). org.springframework.integration.channel.AbstractSubscribableChannel.adjustCounterIfNecessary(AbstractSubscribableChannel.java:69) [Thread-1] []
2016-12-07 18:22:43,331 INFO  stopped sftpReadTest.messageHandler.serviceActivator              org.springframework.integration.endpoint.AbstractEndpoint.stop(AbstractEndpoint.java:131) [Thread-1] []
2016-12-07 18:22:43,332 INFO  Shutting down ExecutorService 'taskScheduler'                     org.springframework.scheduling.concurrent.ExecutorConfigurationSupport.shutdown(ExecutorConfigurationSupport.java:203) [Thread-1] []
2016-12-07 18:22:28829信息从位置[META-INF/spring.factories]加载的默认TestExecutionListener类名:[org.springframework.test.context.web.ServletTestExecutionListener,org.springframework.test.context.support.dirtiesContextBeforeMistestExecutionListener,org.springframework.test.context.support.DependencyInjectionTestExecutionListener,org.springframework.test.context.support.DirtiesContextTestExecutionListener,org.springframework.test.contextt、 transaction.TransactionalTestExecutionListener,org.springframework.test.context.jdbc.sqlscriptsteExecutionListener]org.springframework.test.context.support.AbstractTestContextBootstrapper.getDefaultTestExecutionListenerClassNames(AbstractTestContextBootstrapper.java:260)[main][]
2016-12-07 18:22:28862使用TestExecutionListeners的信息:[org.springframework.test.context.web。ServletTestExecutionListener@6c3f5566,org.springframework.test.context.support。DirtiesContextBeforeModesTestExecutionListener@12405818,org.springframework.test.context.support。DependencyInjectionTestExecutionListener@314c508a,org.springframework.test.context.support。DirtiesContextTestExecutionListener@10b48321,org.springframework.test.context.transaction。TransactionalTestExecutionListener@6b67034,org.springframework.test.context.jdbc。SqlScriptsTestExecutionListener@16267862]org.springframework.test.context.support.AbstractTestContextBootstrapper.getTestExecutionListeners(AbstractTestContextBootstrapper.java:187)[main][]
2016-12-07 18:22:28917使用开放服务器端口的信息…22 com.example.SftpServer.start(SftpServer.java:36)[main][]
2016-12-07 18:22:29325尝试将BouncyCastle注册为JCE提供商的信息org.apache.sshd.common.util.SecurityUtils$BouncyCastleRegistration.call(SecurityUtils.java:287)[main][]
2016-12-07 18:22:29769信息注册成功org.apache.sshd.common.util.SecurityUtils$BouncyCastleRegistration.call(SecurityUtils.java:291)[main][]
2016-12-07 18:22:30023信息刷新org.springframework.context.support。GenericApplicationContext@4d48bd85:启动日期[Wed Dec 07 18:22:30 CET 2016];上下文层次结构的根org.springframework.context.support.AbstractApplicationContext.prepareRefresh(AbstractApplicationContext.java:581)[main][]
2016-12-07 18:22:30088信息从URL加载属性文件[jar:file:/C:/dev/maven/maven repo/org/springframework/integration/spring integration-core/4.3.0.RELEASE/spring-integration-core-4.3.0.RELEASE.jar!/META-INF/spring.integration.default.properties]org.springframework.core.io.support.properties LoaderSupport.loadProperties(PropertiesLoaderSupport.java:172)[main][]
2016-12-07 18:22:30093信息未明确定义名为“IntegrationHeaderChannel Registry”的bean。因此,将创建默认的DefaultHeaderChannel注册表。org.springframework.integration.config.integrationRegistrator.RegisterHeaderChannel注册表(integrationRegistrator.java:330)[main][]
2016-12-07 18:22:30230信息没有明确定义名为“errorChannel”的bean。因此,将创建一个默认的PublishSubscribeChannel.org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor.registerErrorChannel(DefaultConfiguringBeanFactoryPostProcessor.java:130)[main][]
2016-12-07 18:22:30239信息没有明确定义名为“taskScheduler”的bean。因此,将创建一个默认的ThreadPoolTaskScheduler.org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor.registerTaskScheduler(DefaultConfiguringBeanFactoryPostProcessor.java:158)[main][]
2016-12-07 18:22:30248信息JSR-330“javax.inject.inject”注释已找到并支持autowiring org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.(AutowiredAnnotationBeanPostProcessor.java:156)[main][]
2016-12-07 18:22:30349从URL加载属性文件[jar:file:/C:/dev/maven/maven repo/org/springframework/integration/spring integration-core/4.3.0.RELEASE/spring-integration-core-4.3.0.RELEASE.jar!/META-INF/spring.integration.default.properties]org.springframework.core.io.support.properties LoaderSupport.loadProperties(PropertiesLoaderSupport.java:172)[main][]
2016-12-07 18:22:30350[cl]类型的信息Bean“集成全球属性”