0
点赞
收藏
分享

微信扫一扫

解决问题:AbstractWebMvcEndpointHandlerMapping$BadOperationRequestException: Missing parameters: XXX


解决问题:org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$BadOperationRequestException: Missing parameters: XXX
springboot2.0.2自定义Endpoint
自定义代码如下:

import java.util.*;

import org.springframework.boot.actuate.endpoint.annotation.Endpoint;
import org.springframework.boot.actuate.endpoint.annotation.ReadOperation;
import org.springframework.boot.actuate.endpoint.annotation.Selector;
import org.springframework.boot.actuate.endpoint.annotation.WriteOperation;
import org.springframework.boot.actuate.endpoint.web.EndpointMapping;
import org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes;
import org.springframework.boot.actuate.endpoint.web.ExposableWebEndpoint;
import org.springframework.boot.actuate.endpoint.web.annotation.WebEndpoint;
import org.springframework.boot.actuate.web.mappings.MappingDescriptionProvider;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Component;
import org.springframework.web.cors.CorsConfiguration;

/**
*
* @author Simon
* @version 2018年5月25日
*
* 自定义监视端点
*/
@Endpoint(id = "person")
@Component
public class PersonEndpoint {
private final Map<String, Person> people = new HashMap<>();

PersonEndpoint() {
this.people.put("Simon", new Person("Michael Simon"));
this.people.put("Alan", new Person("Rowena Alan"));
this.people.put("Bryant", new Person("Barry Bryant"));
}

@ReadOperation
public Map<String, Person> getAll() {
return people;
}

@ReadOperation
public Person getPerson(@Selector String person) {
return this.people.get(person);
}

@WriteOperation
public void updatePerson(@Selector String name, String person) {
this.people.put(name, new Person(person));
}

}

按照springboot官方文档暗示调用路径传递name参数
例如http://localhost:8888/actuator/person/{name}
接口调用会跳出异常
org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$BadOperationRequestException: Missing parameters: XXX

方式解决
调用接口http://localhost:8888/actuator/person/ignored?person=Simon

举报

相关推荐

0 条评论