对不起,我真的不知道如何总结这个问题的标题。所以,标题可能不太清楚。
我有一个执行一些业务逻辑的动作类。
在动作类中:
class ActionClass extends ActionSupport{
private Merchandise merchandise;// I want to transfer it to the client
//setter and getter
}
在商品类中:
class Merchandise{
private String name; // I want to transfer it
private String price; //I don't want to transfer it
private String description;//I don't want to transfer it
//setter and getter
}
现在,我需要将ActionClass中的商品属性传递给客户端。
但是,在商品属性中,我只想传输名称属性,同时禁止其他两个属性。
那么如何抑制 Merchandise 类中其他两个属性(价格和描述)的转移?