File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 3131import org .springframework .boot .actuate .endpoint .web .EndpointMediaTypes ;
3232import org .springframework .boot .actuate .endpoint .web .ExposableWebEndpoint ;
3333import org .springframework .boot .actuate .endpoint .web .Link ;
34+ import org .springframework .boot .actuate .endpoint .web .reactive .AbstractWebFluxEndpointHandlerMapping .AbstractWebFluxEndpointHandlerMappingRuntimeHints ;
3435import org .springframework .boot .actuate .endpoint .web .reactive .WebFluxEndpointHandlerMapping .WebFluxEndpointHandlerMappingRuntimeHints ;
3536import org .springframework .context .annotation .ImportRuntimeHints ;
3637import org .springframework .web .bind .annotation .ResponseBody ;
4849 * @author Brian Clozel
4950 * @since 2.0.0
5051 */
51- @ ImportRuntimeHints (WebFluxEndpointHandlerMappingRuntimeHints .class )
52+ @ ImportRuntimeHints ({ WebFluxEndpointHandlerMappingRuntimeHints .class ,
53+ AbstractWebFluxEndpointHandlerMappingRuntimeHints .class })
5254public class WebFluxEndpointHandlerMapping extends AbstractWebFluxEndpointHandlerMapping implements InitializingBean {
5355
5456 private final EndpointLinksResolver linksResolver ;
Original file line number Diff line number Diff line change 3333import org .springframework .boot .actuate .endpoint .web .EndpointMediaTypes ;
3434import org .springframework .boot .actuate .endpoint .web .ExposableWebEndpoint ;
3535import org .springframework .boot .actuate .endpoint .web .Link ;
36+ import org .springframework .boot .actuate .endpoint .web .servlet .AbstractWebMvcEndpointHandlerMapping .AbstractWebMvcEndpointHandlerMappingRuntimeHints ;
3637import org .springframework .boot .actuate .endpoint .web .servlet .WebMvcEndpointHandlerMapping .WebMvcEndpointHandlerMappingRuntimeHints ;
3738import org .springframework .context .annotation .ImportRuntimeHints ;
3839import org .springframework .web .bind .annotation .ResponseBody ;
4748 * @author Phillip Webb
4849 * @since 2.0.0
4950 */
50- @ ImportRuntimeHints (WebMvcEndpointHandlerMappingRuntimeHints .class )
51+ @ ImportRuntimeHints ({ WebMvcEndpointHandlerMappingRuntimeHints .class ,
52+ AbstractWebMvcEndpointHandlerMappingRuntimeHints .class })
5153public class WebMvcEndpointHandlerMapping extends AbstractWebMvcEndpointHandlerMapping {
5254
5355 private final EndpointLinksResolver linksResolver ;
You can’t perform that action at this time.
0 commit comments