2012-08-02 114 views
0

是否有可能做同樣一種行爲,因爲這:使用註釋將數據綁定

protected void onBind(HttpServletRequest request, Object command, BindException bindException) throws Exception { 
    Invoice invoice = (Invoice) command; 

    invoice.getLineItems().removeAll(Collections.singletonList(null)); 
} 

當使用註解? 我使用@controller註釋,所以我沒有onBind函數。我想操縱元素列表(從列表中刪除項目)。

回答