将属性添加到 javax.peristence 实体

发布于 2024-09-18 21:48:51 字数 166 浏览 8 评论 0原文

我右键单击实体类的编辑器。 然后选择“插入代码”,但看不到“添加属性”框。

我想添加一个生日属性,该属性必须使用 javax.persistence.Temporal 注释进行注释,以将该属性标记为底层数据库表的日期字段。

我不确定如何使用 Netbeans 6.8 IDE 添加这个?

I right click into the editor of the Entity class.
then select Insert Code but do not see the Add Property box.

I want to add a birthday property which must be annotated with the javax.persistence.Temporal annotation to mark the property as date field to the underlying database table.

I am unsure how to use the Netbeans 6.8 IDE to add this??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

话少情深 2024-09-25 21:48:51

我不确定如何使用 Netbeans 6.8 IDE 添加此内容?

您最好的选择是使用键盘和手指自行添加:)

@Temporal(TemporalType.DATE)
private java.util.Date birthday;

public Date getBirthday() { return this.birthday; }

public void setBirthday(Date birthday) { this.birthday = birthday; }

I am unsure how to use the Netbeans 6.8 IDE to add this??

Your best option is to use your keyboard and your fingers to add it yourself :)

@Temporal(TemporalType.DATE)
private java.util.Date birthday;

public Date getBirthday() { return this.birthday; }

public void setBirthday(Date birthday) { this.birthday = birthday; }
把人绕傻吧 2024-09-25 21:48:51

插入代码>添加属性是 Netbeans 6.9 的一项功能。您可以选择下载最新版本的 Netbeans 吗?那应该可以解决问题。否则,您可以自己编写代码。

Insert Code > Add Property is a feature of Netbeans 6.9. Do you have the option to download the latest version of Netbeans? That should solve the problem. Otherwise you may simply write the code yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文