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 31
31
import org .springframework .boot .actuate .endpoint .web .EndpointMediaTypes ;
32
32
import org .springframework .boot .actuate .endpoint .web .ExposableWebEndpoint ;
33
33
import org .springframework .boot .actuate .endpoint .web .Link ;
34
+ import org .springframework .boot .actuate .endpoint .web .reactive .AbstractWebFluxEndpointHandlerMapping .AbstractWebFluxEndpointHandlerMappingRuntimeHints ;
34
35
import org .springframework .boot .actuate .endpoint .web .reactive .WebFluxEndpointHandlerMapping .WebFluxEndpointHandlerMappingRuntimeHints ;
35
36
import org .springframework .context .annotation .ImportRuntimeHints ;
36
37
import org .springframework .web .bind .annotation .ResponseBody ;
48
49
* @author Brian Clozel
49
50
* @since 2.0.0
50
51
*/
51
- @ ImportRuntimeHints (WebFluxEndpointHandlerMappingRuntimeHints .class )
52
+ @ ImportRuntimeHints ({ WebFluxEndpointHandlerMappingRuntimeHints .class ,
53
+ AbstractWebFluxEndpointHandlerMappingRuntimeHints .class })
52
54
public class WebFluxEndpointHandlerMapping extends AbstractWebFluxEndpointHandlerMapping implements InitializingBean {
53
55
54
56
private final EndpointLinksResolver linksResolver ;
Original file line number Diff line number Diff line change 33
33
import org .springframework .boot .actuate .endpoint .web .EndpointMediaTypes ;
34
34
import org .springframework .boot .actuate .endpoint .web .ExposableWebEndpoint ;
35
35
import org .springframework .boot .actuate .endpoint .web .Link ;
36
+ import org .springframework .boot .actuate .endpoint .web .servlet .AbstractWebMvcEndpointHandlerMapping .AbstractWebMvcEndpointHandlerMappingRuntimeHints ;
36
37
import org .springframework .boot .actuate .endpoint .web .servlet .WebMvcEndpointHandlerMapping .WebMvcEndpointHandlerMappingRuntimeHints ;
37
38
import org .springframework .context .annotation .ImportRuntimeHints ;
38
39
import org .springframework .web .bind .annotation .ResponseBody ;
47
48
* @author Phillip Webb
48
49
* @since 2.0.0
49
50
*/
50
- @ ImportRuntimeHints (WebMvcEndpointHandlerMappingRuntimeHints .class )
51
+ @ ImportRuntimeHints ({ WebMvcEndpointHandlerMappingRuntimeHints .class ,
52
+ AbstractWebMvcEndpointHandlerMappingRuntimeHints .class })
51
53
public class WebMvcEndpointHandlerMapping extends AbstractWebMvcEndpointHandlerMapping {
52
54
53
55
private final EndpointLinksResolver linksResolver ;
You can’t perform that action at this time.
0 commit comments