我对 GWT 很陌生。我正在使用 ext-gwt 小部件。
我在我的办公室代码中发现很多地方包含类似,
class A extends BaseModel{
private UserAccountDetailsDto userAccountDetailsDto = null;
//SETTER & GETTER IN BASEMODEL WAY
}
此外,未使用 DTO 参考。
public class UserAccountDetailsDto implements Serializable{
private Long userId=null;
private String userName=null;
private String userAccount=null;
private String userPermissions=null;
//NORMAL SETTER & GETTER
}
现在,我可以从 GWT 服务器端代码中获得结果,并且一切正常,但是当我在 A 类中评论 DTO 引用时,我没有得到任何结果。
请解释我的需要。
谢谢