我可以设置 EntityProxy 的默认字段值吗?
假设我有这个:
TimeEntryProxy timeEntry = someRequestContext.create(TimeEntryProxy.class);
创建的代理是空的。有没有办法为其某些字段设置默认值?例如,此代理有一个双精度的timeAllocation。是否可以设置为0而不必这样做:
timeEntry.setTimeAllocation(0);
谢谢
Say I have this:
TimeEntryProxy timeEntry = someRequestContext.create(TimeEntryProxy.class);
The created proxy is empty. Is there a way to set some of it's fields with a default value? For example, this proxy has a timeAllocation which is a double. Can it be set to 0 without having to do this:
timeEntry.setTimeAllocation(0);
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在自定义 Locator.create(Class c) 方法中设置默认值怎么样?
How about setting default values in your custom Locator.create(Class c) method?