GH-3994: Register native hints for Graph model (#3996)

Fixes https://github.com/spring-projects/spring-integration/issues/3994

Essentially, migrate those hints from Spring Boot Actuator:
an `IntegrationGraphServer` can be used without Spring Boot

* Introduce `IntegrationGraphRuntimeHints` - implementation of `RuntimeHintsRegistrar`
to register reflection hints for `Graph` and top-level `IntegrationNode` types.
* Use `@ImportRuntimeHints` on the `IntegrationGraphServer` to make those hints
conditional.
This commit is contained in:
Artem Bilan
2023-01-23 14:22:42 -05:00
committed by GitHub
parent ebba37497f
commit f01e2b8553
4 changed files with 64 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2016-2022 the original author or authors.
* Copyright 2016-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -33,11 +33,13 @@ import net.minidev.json.JSONArray;
import org.assertj.core.api.InstanceOfAssertFactories;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.ListableBeanFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.SmartLifecycle;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
import org.springframework.context.annotation.ImportRuntimeHints;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.integration.annotation.Filter;
import org.springframework.integration.annotation.InboundChannelAdapter;
@@ -91,6 +93,9 @@ import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
@DirtiesContext
public class IntegrationGraphServerTests {
@Autowired
private ListableBeanFactory beanFactory;
@Autowired
private IntegrationGraphServer server;
@@ -238,6 +243,8 @@ public class IntegrationGraphServerTests {
assertThat(serviceActivator)
.containsEntry("integrationPatternType", "service_activator")
.containsEntry("integrationPatternCategory", "messaging_endpoint");
assertThat(this.beanFactory.findAnnotationOnBean("server", ImportRuntimeHints.class)).isNotNull();
}
@Test