JSPでオプションのオブジェクトを使用する方法を知っている人はいますか?Java 8のオプションとJSP
私はクラスがあります。
@Entity
@Table(name = "projects")
public class Project {
@Expose
@ManyToOne
@JoinColumn(name = "customer_id")
private Customer endCustomer;
....
public Optional<Customer> getEndCustomer() {
return Optional.ofNullable(endCustomer);
}
public void setEndCustomer(Customer endCustomer) {
this.endCustomer = endCustomer;
}
....
}
を、私は、JSPがあります
<td>
<form:select class="form-control" id="endCustomer" path="endCustomer.id" tabindex="4">
<form:options items="${endCustomers}" itemValue="id" itemLabel="name"/>
</form:select>
</td>
この部分は明白な理由のために動作しません:path="endCustomer.id"
です回避策がありますか? ありがとう!
あなたがより多くを指定することができ、この
のようなものを試してみてください? 'endCustomer.get()。id'を試してみましたか? – soorapadman
@soorapadmanが試行しましたが動作しませんでした。 –