Ich arbeite an einem MVC-Projekt, Java und Play-Framework verwenden, und ich stieß auf ein Problem. Hier ist der interessante Teil des Codes (ich es gereinigt ein wenig):Erhalte einen Fehler 500 aber zurückgegebene ok()
Der Controller:
public Result acceptInputSimulationPension() {
if (request().getHeader(CONTENT_TYPE) == null) {
return badRequest("error: no content type");
}
if (!request().getHeader(CONTENT_TYPE).contains("multipart/form-data")) {
return badRequest("Error: wrong content type. Expected multipart/form-data, got " + CONTENT_TYPE);
}
Form<String> form = Form.form(String.class).bindFromRequest();
Pension project = new Pension();
project.setMaxloss(form.field("maxloss").value());
// setting some other parameters...
project.setIdUser(Application.user.getId());
if (project.getMaxloss() == 0) {
return badRequest("error: maxloss datalist malformed");
}
double[] flows = Application.getPensionFlows(project, (int) project.computeContributionYears(), (int) project.computeAdditionalIncomeNeeded());
Savings savings = new Savings((int) project.getInitialContribution(), flows, (int) project.computeContributionYears() * 12);
Ebean.save(project);
session("init/pension/maxloss"+project.getId(), form.field("maxloss").value());
// setting some other session variables...
ObjectNode result = Application.jsonEncoder.encodeFinalSimulPension(project, savings.getSavings(), flows, false, true);
result.put("id", project.getId());
System.out.println("hello?");
return ok("test");
}
ich ok bin wieder („test“), um sicherzustellen, dass das Problem nicht aus kommt die Ergebnisvariable.
Und die AJAX:
function ajaxPOST_simulation(data, id, formName) {
$.ajax({
type: 'POST',
url: "/input/simulation/"+formName,
processData: false,
contentType: false,
data: data,
success: function (resp) {
alert("ok");
},
error: function (resp) {
alert("error: " + resp.responseText);
}
});
}
Die System.out.println ("Hallo") erfolgreich auf meinem Terminal angezeigt, so dass ich denke, ich ok bin wieder ("test"), aber ich bekomme diese Fehler als Alert:
error:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Execution exception</title>
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSU... etc.
Wie ist das möglich? Vielen Dank im Voraus!
EDIT: Ich habe gerade herausgefunden, dass der HTML-Code eine NullPointerException entsprach, aber ich habe immer noch keine Ahnung, was hier NULL sein könnte. Auch die Ergebnisvariable nicht NULL ist und sieht ok ...