【java – Spring Integration Spring Boot Actuator Endpoints未显示】教程文章相关的互联网学习教程文章

java – Spring Integration:错误通道 – 异常处理问题【代码】

您好,这是我的配置: > JVM 1.6.0_30> Spring 3.0.5版> Spring Integration核心2.0.5> S.O. Windows 7的 这是我的上下文配置:<beans:beanclass="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"lazy-init="false"><beans:property name="ignoreUnresolvablePlaceholders"value="true" /><beans:property name="location" value="classpath:etc/pds/pds.properties" /> </beans:bean><channel id="pdsre...

Spring Integration Java DSL – 如何调用int-http:outbound-gateway?【代码】

我在流程中有一个进行ReST API调用的部分:<int:channel id="requestChannel"/><int-http:outbound-gateway request-channel="requestChannel"reply-channel="logger"url="${api.base.uri}/data"http-method="PUT"expected-response-type="java.lang.String"/><int:logging-channel-adapter id="logger"logger-name="logger"expression="payload"level="INFO"/>我试图使用Java DSL复制它,但找不到足够的文档.任何帮助将非常感激.解...

带有Spring Boot Integration的Cucumber Java – Spring @Autowired会抛出NullPointer异常【代码】

我正在为测试每个功能的Spring启动应用程序编写cucumber-java单元测试.当我与spring boot集成时,@ Autowired类会抛出NullPointer异常. 春季启动应用程序类,@SpringBootApplication public class SpringBootCucumberTest {public static void main(String[] args) {SpringApplication.run(SpringBootCucumberTest.class, args);} }要测试的课程,@Component public class Library {private final List<BookVo> store = new ArrayList...

java – Spring Integration TCP【代码】

我想设置Spring TCP Server-Client应用程序.我需要一个服务器监听端口上的传入消息,例如,6666,以及客户端在不同的端口上发送消息,例如7777.我已经关注了documentation,但我遇到了客户期望的问题收到回复,但事实上,另一端只会收到来自客户的消息,不会发送任何回复.所以,基本上,我经常遇到这个错误:o.s.i.ip.tcp.TcpOutboundGateway : Tcp Gateway exceptionorg.springframework.integration.MessageTimeoutException: Tim...

java – Spring Integration将路径变量和post body组合在有效负载表达式中【代码】

使用http入站网关我可以使用SPEL指定有效负载表达式,该表达式将访问header,requestParams和pathVariables.如何从POST中包含身体?我目前拥有的一个例子是<int-http:inbound-gateway path="/document/{product}/{id}/blah"supported-methods="GET"request-channel="documentService.blah"reply-channel="httpReplyChannel"message-converters="jsonMessageConverter"header-mapper="defaultHttpHeaderMapper"payload-expression="ne...

java – @Retryable在Spring引导应用程序中由Integration测试触发时不进行重试【代码】

我在SpringBoot应用程序的Service中有一个简单的方法.我使用@Retryable为该方法设置了重试机制.我正在尝试对服务中的方法进行集成测试,并且在方法抛出异常时不会发生重试.该方法只执行一次.public interface ActionService { @Retryable(maxAttempts = 3, backoff = @Backoff(delay = 2000)) public void perform() throws Exception;}@Service public class ActionServiceImpl implements ActionService {@Override public voi...