- 浏览: 83605 次
最新评论
-
liang1022:
Groovy 腳本語言在功能上可以取代javax.script ...
JAVA6.0操作脚本语言 -
venus224:
感谢你!
是你让我进入了开发这个行业!
JAVA截屏程序(第四版) -
wendal:
不错嘛, 正好可以用上.
JAVA截屏程序(第四版) -
muqingren:
貌似没有贴完啊
日期选择器 -
keling:
第三、四版附件资源均找不到啦,可否也email一份给我学习下呀 ...
JAVA截屏程序(第四版)
今天看到一本书上写的,有关定义实体BEAN的一些细节,直到今天才知道其中的差别
代码如下:
java 代码1
- /*
- * Test.java
- *
- * Created on 2006年12月15日, 上午12:06
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
- package com.hadeslee.entity;
- import java.io.Serializable;
- import javax.persistence.Entity;
- import javax.persistence.GeneratedValue;
- import javax.persistence.GenerationType;
- import javax.persistence.Id;
- /**
- * Entity class Test
- *
- * @author lbf
- */
- @Entity
- public class Test implements Serializable {
- private Long id;
- private String name,sex,age;
- private int idCard;
- /** Creates a new instance of Test */
- public Test() {
- }
- /**
- * Gets the id of this Test.
- * @return the id
- */
- @Id
- @GeneratedValue(strategy = GenerationType.AUTO)
- public Long getId() {
- return this.id;
- }
- /**
- * Sets the id of this Test to the specified value.
- * @param id the new id
- */
- public void setId(Long id) {
- this.id = id;
- }
- public void setNameID(int ids){
- this.idCard=ids;
- }
- public int getNameID(){
- return idCard;
- }
- /**
- * Returns a hash code value for the object. This implementation computes
- * a hash code value based on the id fields in this object.
- * @return a hash code value for this object.
- */
- @Override
- public int hashCode() {
- int hash = 0;
- hash += (this.id != null ? this.id.hashCode() : 0);
- return hash;
- }
- /**
- * Determines whether another object is equal to this Test. The result is
- * <code>true</code> if and only if the argument is not null and is a Test object that
- * has the same id field values as this object.
- * @param object the reference object with which to compare
- * @return <code>true</code> if this object is the same as the argument;
- * <code>false</code> otherwise.
- */
- @Override
- public boolean equals(Object object) {
- // TODO: Warning - this method won't work in the case the id fields are not set
- if (!(object instanceof Test)) {
- return false;
- }
- Test other = (Test)object;
- if (this.id != other.id && (this.id == null || !this.id.equals(other.id))) return false;
- return true;
- }
- /**
- * Returns a string representation of the object. This implementation constructs
- * that representation based on the id fields.
- * @return a string representation of the object.
- */
- @Override
- public String toString() {
- return "com.hadeslee.entity.Test[id=" + id + "]";
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getSex() {
- return sex;
- }
- public void setSex(String sex) {
- this.sex = sex;
- }
- public String getAge() {
- return age;
- }
- public void setAge(String age) {
- this.age = age;
- }
- }
java 代码2
- /*
- * Test.java
- *
- * Created on 2006年12月15日, 上午12:06
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
- package com.hadeslee.entity;
- import java.io.Serializable;
- import javax.persistence.Entity;
- import javax.persistence.GeneratedValue;
- import javax.persistence.GenerationType;
- import javax.persistence.Id;
- /**
- * Entity class Test
- *
- * @author lbf
- */
- @Entity
- public class Test implements Serializable {
- @Id
- @GeneratedValue(strategy = GenerationType.AUTO)
- private Long id;
- private String name,sex,age;
- private int idCard;
- /** Creates a new instance of Test */
- public Test() {
- }
- /**
- * Gets the id of this Test.
- * @return the id
- */
- public Long getId() {
- return this.id;
- }
- /**
- * Sets the id of this Test to the specified value.
- * @param id the new id
- */
- public void setId(Long id) {
- this.id = id;
- }
- public void setNameID(int ids){
- this.idCard=ids;
- }
- public int getNameID(){
- return idCard;
- }
- /**
- * Returns a hash code value for the object. This implementation computes
- * a hash code value based on the id fields in this object.
- * @return a hash code value for this object.
- */
- @Override
- public int hashCode() {
- int hash = 0;
- hash += (this.id != null ? this.id.hashCode() : 0);
- return hash;
- }
- /**
- * Determines whether another object is equal to this Test. The result is
- * <code>true</code> if and only if the argument is not null and is a Test object that
- * has the same id field values as this object.
- * @param object the reference object with which to compare
- * @return <code>true</code> if this object is the same as the argument;
- * <code>false</code> otherwise.
- */
- @Override
- public boolean equals(Object object) {
- // TODO: Warning - this method won't work in the case the id fields are not set
- if (!(object instanceof Test)) {
- return false;
- }
- Test other = (Test)object;
- if (this.id != other.id && (this.id == null || !this.id.equals(other.id))) return false;
- return true;
- }
- /**
- * Returns a string representation of the object. This implementation constructs
- * that representation based on the id fields.
- * @return a string representation of the object.
- */
- @Override
- public String toString() {
- return "com.hadeslee.entity.Test[id=" + id + "]";
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getSex() {
- return sex;
- }
- public void setSex(String sex) {
- this.sex = sex;
- }
- public String getAge() {
- return age;
- }
- public void setAge(String age) {
- this.age = age;
- }
- }
代码1和代码2唯一的差别就是@Id的注释地方不同了
同样是注释主键,当在直接用在变量上注释时,如果其它的成员变量没有指定名字,则数据库生成的表的各列名字将以定义的成员变量的变量名为准
当用在getter方法注释时,则数据库生成的表的各列名字将取getXXXX的XXXX名字,将不再取定义的成员变量名
像上面的例子中,代码1会有IdCard这一列,则代码2取而代之的将是NameID这一列.这看上去是一个小小的差别,但是了解了终究是好事.呵呵.终于懂清楚在get上注释和直接在成员变量上注释的差别了,一般来说是不会有什么差别的,一般标准 的JAVABEAN都是成员变量名和getter,setter签名一样的.
好了,睡觉去了
发表评论
-
EJB初学日记(3)
2007-09-08 10:13 1357今天主要是看了一下拦 ... -
七种映射关系
2006-12-17 23:25 2086直到现在我对映射关系都不是非常了解,希望以后有个更深的了解,今 ... -
关于session bean的一些细节
2006-12-14 16:30 2540session BEAN一般用于操作 ... -
EJB中实现的AOP
2006-12-14 11:27 2908现在AOP是越来越流行了,面向切面的编程,呵呵,似乎比面向对象 ... -
实体BEAN的关联
2006-12-13 18:33 1490今天自己写了一个例子,有关实体BEAN的关联问题,我写的这个例 ... -
如何在应用程序中访问绑定的EJB?
2006-12-12 17:46 2456今天又有问题了,所有的例子都是在WEB页面里面调用EJB的,这 ... -
昨天的问题终于解决了
2006-12-11 17:08 1693唉,真是太高兴了.昨天 ... -
NBNB我爱你
2006-12-11 15:04 1407这几天一直都发现NB莫名奇妙的出一些错误,经常空指针异常,这不 ... -
确实不爽
2006-12-10 19:08 4775今天真是郁闷,每次都试不好,唉,话不多说,把代码帖出来吧 ja ... -
J2EE初学3
2006-12-10 16:24 1466stateless Session Bean与stateful ... -
EJB3.0规范解读(转)
2006-12-08 16:18 1454引言 在本文 ... -
J2EE初学2
2006-12-08 11:56 1232今天看到了实体BEAN,(Enti ... -
J2EE初学
2006-12-07 22:31 1564今天终于还是下定决心看看EJB,看着SPRING看了两天,觉得 ...
相关推荐
在Linux系统中,安装小小输入法时...理解这一点对于避免类似问题至关重要,尤其是对于Linux初学者和那些容易忽略细节的高级用户。通过细致的排查和分析,我们可以克服这个安装障碍,享受小小输入法带来的便捷输入体验。
最后,当孩子们在阅读小图书时,他们会更加关注故事中的细节,例如兔小小和熊大大的相互帮助和共同经历的快乐时光。通过分享阅读后的感受,孩子们能更加深入地体会到,尽管每个人的兴趣和习惯都不尽相同,但这并不会...
### 一点小小的创意CSS:鼠标放上去则显示电话号码 #### 概述 本文将详细介绍一个有趣且实用的CSS技巧——当鼠标悬停在特定元素上时,显示隐藏的电话号码。这一效果不仅可以用于个人博客或网站增添互动性,还可以...
同时,美国“挑战者号”航天飞机的悲剧,也是由于一个小小的螺丝钉未拧紧,凸显了细节对安全的巨大影响。 演讲稿提醒我们,现代社会的快速节奏和专业化分工使得细节更加重要。生活是由无数细节组成的,没有细节就...
这些看似微不足道的细节,对于小小班的孩子来说却是建立良好生活习惯的重要步骤。 在教育教学方面,我充分认识到这个年龄段的孩子具有极强的模仿能力和探索欲望。因此,我采用寓教于乐的方式,将知识融入到生动有趣...
在这个过程中,孩子们将学会聆听、关注细节、理解因果关系,这些都是学习其他知识的基础。 观察与猜测是培养孩子想象力和推理能力的重要环节。在讲述故事时,教师可以引导孩子们观察角色的特征,提出问题,如“兔...
例如,教师在课堂上随手捡起掉落的纸屑,虽然只是一个小小的动作,但它传达出的是对环境的尊重和对细节的关注,这种正面的行为会在学生心中种下责任感和细致周到的种子。 除此之外,书中还提到了对细节的观察和分析...
这个故事告诉我们,在安全问题上,任何一点小小的忽视都可能导致不可挽回的损失。 #### 五、从我做起,关注细节 在日常工作中,我们经常强调“主人翁意识”。而在安全问题上,这种意识尤为重要。每一次事故的发生...
在艺术领域,齐白石的艺术创新力证了这一点。齐白石的画风经历了五次重大的转变,每一次的转变都是对传统艺术的突破与革新,他的勇于探索和创新精神使他成为中国美术史上不可或缺的一位巨匠。在科技领域,苹果公司的...
一方面出于对mootools的兴趣(虽然没有jQuery那么hot), 另一方面,也是想为mootools的推广添一点小小的力量,虽然这微不足道. 加上前面发布过的2个mootools组件, 写下来总的感觉是: 在效果实现方面, 确实用jQuery编写要...
药品的管理要求极高的精确性,哪怕是一点小小的差错都可能给顾客带来严重的后果。在学习处理药房账目和管理库存的过程中,我感受到了巨大的压力。账目的一分之差,可能导致库存的不准确,从而影响药品的供给。在这一...
一点小小的调整可能会对整体设计产生巨大的影响。 3. 沟通能力:设计师不仅仅是创造者,同时也是沟通者。他们需要与客户沟通,确保理解客户需求,并且能够清楚地表达设计理念。 4. 创新思维:优秀的设计师能够以...
这一点小小的改进,让书签从单一的功能性向更加丰富的用户体验迈出了重要的一步。 说到制作工艺,夹板式书签所采用的材料与制作工艺的选择对于其功能的实现至关重要。设计师可能根据需求挑选了不同材料,比如硬塑料...
首先,文档提出“100-1=0”的概念,这是对质量控制中零缺陷理念的强调,意味着在生产过程中任何一点小小的疏忽或差错都可能造成100%的产品报废。这要求所有员工都要有高度的质量意识,认识到品质是企业的生命线,是...
每一点小小的疏忽都可能酿成大祸,因此我们需要从细节做起,防患于未然。 在强调个人责任的同时,我们还应看到消防工作的重要性和消防人员的奉献精神。消防员是人民生命财产安全的守护者,他们在关键时刻挺身而出,...
为了深入理解这些励志精神、学习态度、团队合作、自我提升、细节把握、目标设定及心态调整的重要性,接下来让我们详细探讨每一点的内涵及其在学生防溺水宣传中的应用。 首先,励志精神是个人成长和成功的基石。励志...
在IT创新中,一点小小的改变,比如一项新技术的应用,可能就会开启全新的可能性。 8. **品质至上**:卖菜的故事中,品质决定了销售,同样,在IT产品中,质量是核心竞争力,只有高质量的产品才能赢得用户的信赖和...
这一点在中国古代的工程建设、军事布局等方面尤为突出,而现代企业则应借鉴这种精神,将之运用于日常的生产经营活动中。 教程通过对“千里之堤,溃于蚁穴”的案例分析,深入阐述了细节管理与执行力的关联。在企业...
随着旅途的开始,我们也向您提出一点小小的要求。为了大家的旅途安全和舒适,也为了维护车内的环境卫生,请大家在旅途中注意以下几点:请将垃圾放入指定位置,不要在车内大声喧哗,以免影响到他人。同时,我们也将为...
老乔布斯说过,所谓的微创新,并不是让你把过去的东西都推翻掉,而是在过去的基础上去不断的调整和变化,甚至可能只是一点小小的功能,但是最后给客户带来的体验是非常棒的,这就是微创新。对一个成功的产品来说,再...