2

私は次のRESTfullメソッドを持っています:

    @RequestMapping(value = "/budgetLines",
        method = RequestMethod.POST,
        produces = MediaType.APPLICATION_JSON_VALUE)
@Timed
public void create(@RequestBody BudgetLine budgetLine) {
    System.out.println("Before Persisting in the repository " + budgetLine);
    budgetLineRepository.save(budgetLine);
}

私は Web アプリケーション内でこのメソッドを使用しています。送信されたオブジェクトが有効であること (id を除くすべての属性に有効な値が設定されている) をネットワーク分析ツール (Chrome の Web 開発者ツール) を使用して確認しましたが、リポジトリに渡されるオブジェクトには、null 属性のみが含まれます。

ボディの例を次に示します。

{
    "Name":"testLabel",
    "Label":"testName",
    "AnnualBudget":9000
}

クラス BudgetLine は次のように定義されます。

@Entity
@Table(name = "T_BUDGETLINE")
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class BudgetLine implements Serializable {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private Long id;

    @Column(name = "label")
    private String Label;

    @Column(name = "name")
    private String Name;

    @Column(name = "annual_budget", precision=10, scale=2)
    private BigDecimal AnnualBudget;

    @OneToMany(mappedBy = "budgetLine")
    @JsonIgnore
    @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
    private Set<Report> reportss = new HashSet<>();

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getLabel() {
        return Label;
    }

    public void setLabel(String Label) {
        this.Label = Label;
    }

    public String getName() {
        return Name;
    }

    public void setName(String Name) {
        this.Name = Name;
    }

    public BigDecimal getAnnualBudget() {
        return AnnualBudget;
    }

    public void setAnnualBudget(BigDecimal AnnualBudget) {
        this.AnnualBudget = AnnualBudget;
    }

    public Set<Report> getReportss() {
        return reportss;
    }

    public void setReportss(Set<Report> Reports) {
        this.reportss = Reports;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        BudgetLine budgetLine = (BudgetLine) o;

        if (id != null ? !id.equals(budgetLine.id) : budgetLine.id != null) return false;

        return true;
    }

    @Override
    public int hashCode() {
        return (int) (id ^ (id >>> 32));
    }

    @Override
    public String toString() {
        return "BudgetLine{" +
                "id=" + id +
                ", Label='" + Label + "'" +
                ", Name='" + Name + "'" +
                ", AnnualBudget='" + AnnualBudget + "'" +
                '}';
    }

    public BudgetLine() {
    }
}
4

1 に答える 1

4

パラメータの最初の文字を小文字にしてみてください

{
    "name":"testLabel",
    "label":"testName",
    "annualBudget":9000
}

Spring は標準の Java 命名規則に大きく依存しているため、それらにも従うことをお勧めします。あなたの例では、最初の文字を小文字にしてクラスフィールドに名前を付ける必要があります。

于 2015-06-02T14:25:02.217 に答える