restapi如何获取参数?

Rest api how to get parameters?

我刚开始休息api。

我需要制作一个 api 以字符串作为参数然后 return 布尔值。

现在我的问题是如何将该字符串传递给我的 api,然后在我的 api 中获取该字符串?

这是一个在参数中采用字符串并在未提供查询参数时具有默认值的示例:

@Path("business/department/")
public interface DepartmentService {

    @GET
    @Path("/cs/availability/chat")
    @Produces(MediaType.APPLICATION_JSON)
    boolean getCustomerServiceAvailability(@QueryParam("type") @DefaultValue("chat") String type);
}

和实现 class 可以是实现您的接口的任何东西。在这个例子中,它是一个无状态的 EJB

@Stateless
public class DepartmentServiceImpl implements DepartmentService {

@Context
private HttpServletRequest request;

private static final Logger LOGGER = Logger.getLogger(DepartmentServiceImpl.class.getName());


@Override
public boolean getCustomerServiceAvailability(String scheduleType) {

    RequestInfo reqInfo = new RequestInfo(request, this.getClass(), "getCustomerServiceAvailability");
    boolean available;
    try {
        available = CallBusinessService(scheduleType);
    } catch (Exception e) {
        LOGGER.log(Level.SEVERE, e.getLocalizedMessage());
        throw new ServiceException();
    } finally {
        reqInfo.logExecutionTime();
    }
}
}