We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54a23f9 commit 2a1ccfeCopy full SHA for 2a1ccfe
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/RequestMappingEndpoint.java
@@ -24,6 +24,7 @@
24
import java.util.Map;
25
26
import org.springframework.beans.BeansException;
27
+import org.springframework.boot.context.properties.ConfigurationProperties;
28
import org.springframework.context.ApplicationContext;
29
import org.springframework.context.ApplicationContextAware;
30
import org.springframework.web.method.HandlerMethod;
@@ -35,6 +36,7 @@
35
36
*
37
* @author Dave Syer
38
*/
39
+@ConfigurationProperties(prefix = "endpoints.mappings", ignoreUnknownFields = false)
40
public class RequestMappingEndpoint extends AbstractEndpoint<Map<String, Object>>
41
implements ApplicationContextAware {
42
0 commit comments