post Unirest 中的请求 Java 结果为 302 http 结果

post request in Unirest Java result on a 302 http result

我正在训练自己创建 restful 服务器和基于桌面 java 的客户端。

我的后端是 Spring 基于引导的,我有以下控制器:

@RestController
@RequestMapping(NiveauAccessController.URL)
public class NiveauAccessController extends GenericController{

public static final String URL = "/acl";

@Autowired
private NiveauAccessRepository niveauAccessRepository;

@PostMapping
private ServerResponse createACL(
            @RequestParam("aclTitle") final String aclTitle,
            @RequestParam("roles") final List<String> roles 
){
    if(isSessionValid()){
        final MNG_NIVEAU_ACCEE mng_niveau_accee = new MNG_NIVEAU_ACCEE();
        mng_niveau_accee.setAclTitle(aclTitle);
        List<Role> enumRoles = new ArrayList();
        roles.stream().forEach(role->{
            enumRoles.add(Role.valueOf(role));
        });
        mng_niveau_accee.setRoles(enumRoles);
        niveauAccessRepository.save(mng_niveau_accee);
        initSuccessResponse(mng_niveau_accee);
        return serverResponse;
    }
    initFailLoginResponse();
    return serverResponse;
}
.
.
.
}

对于我的 java 客户端,我正在使用此示例代码通过我的服务器发送 post 请求:

@FXML
private void doAdd(ActionEvent event) throws UnirestException {
    if (titleACL.getText().isEmpty()) {
        Alert alert = new Alert(Alert.AlertType.ERROR);
        alert.initModality(Modality.WINDOW_MODAL);
        alert.initOwner(((Node) event.getSource()).getScene().getWindow());
        alert.setContentText("Veuillez remplir le champ");
        alert.showAndWait();
        titleACL.requestFocus();
        return;
    }
    String title = titleACL.getText();
    Predicate<? super JFXCheckBox> selectedCheckboxes = checkbox -> {
        return checkbox.isSelected();
    };
    List<JFXCheckBox> selectedCheckBoxesList = observableCheckBoxes.values().stream().filter(selectedCheckboxes).collect(Collectors.toList());
    final List<String> roles = new ArrayList<>();
    selectedCheckBoxesList.stream().forEach(checkbox -> {
        roles.add(checkbox.getText());
    });

    HttpResponse<String> asString = Unirest.post(ACL_URL)
            .header("accept", "application/json")
            .field("aclTitle", title)
            .field("roles", roles)
            .asString();

    System.out.println(asString.getStatus());
    System.out.println(asString.getHeaders().values());
    if (asString.getStatus() == 200) {
    }
}

我的输出是:

302

[[0], [Thu, 10 May 2018 13:30:05 GMT], [https://localhost:8443/acl]]

我不明白为什么我会收到用于 URL 重定向的 302 状态代码。

我正在尝试使用此 post 向我的数据库添加数据。

我应该怎么做才能让我的服务器接受这个请求?

havins ssl 启用了我超过 8080 的请求得到了重定向到 8443 这使用网络浏览器没有问题因为它会处理重定向但是在 javafx 客户端中你必须自己处理重定向所以有一个可能的解决方案

if (asString.getStatus() == 200) {
      //your success handler code
}else if (asString.getStatus() == 302) {
      // use your Rest api to do the request using the response body
}