一、ID的High/Low算法
高位数字分别与低位数字相匹配,得到的数字是唯一的
减少与数据库的交互
二、ORM
1、类映射成表
类名与表名对应
2、属性定义映射成列,类型之间必须是兼容的
3、类关系映射成表关系
一对一双向关系
内存中都保存对方的一个引用
数据库中,表b的id是主键,也是外键,引用a表的id主键 -- share pk
表b中有一个字段aid是外键,引用a表的主键,并且有唯一约束 -- pk+fk
共享主键:
create table car_pk (
id number(10,0) not null,
name varchar2(15),
serial varchar2(30),
manufacturer varchar2(50),
producedate date,
primary key (id)
);
create table engine_pk (
id number(10,0) not null,
model varchar2(20),
manufacturer varchar2(50),
producedate date,
primary key (id)
);
alter table engine_pk
add constraint fk_engine_car_pk
foreign key (id)
references car_pk(id);
外键+唯一约束
create table car_fk (
id number(10,0) not null,
name varchar2(15) not null,
serial varchar2(30) not null,
manufacturer varchar2(50) not null,
producedate date,
primary key (id)
);
create table engine_fk (
id number(10,0) not null,
model varchar2(20) not null,
manufacturer varchar2(50) not null,
producedate date,
carid number(10,0) unique,
primary key (id)
);
alter table engine_fk
add constraint fk_engine_car_fk
foreign key (carid)
references car_fk(id);
实体对象:在内存中有id属性的
值对象:没有id的,依赖其他对象存在
一对多关系
一的一方保存多一方的一个集合,最好使用set,保证无重复元素
多的一方保存一一方的一个对象的引用
public class Order implements Serializable{
private int id;
private String owner;
private String phone;
private String address;
private Set<Item> items = new HashSet<Item>();
}
public class Item implements Serializable{
private int id;
private String product;
private int amount;
private Order order;
}
create table ec_item (
id number(10,0) not null,
product varchar2(15) not null,
amount number(10,0) not null,
orderid number(10,0) not null,
primary key (id)
);
create table ec_order (
id number(10,0) not null,
owner varchar2(15) not null,
phone varchar2(15) not null,
address varchar2(50),
primary key (id)
);
alter table ec_item
add constraint fk_item_order
foreign key (orderid)
references ec_order(id);
多对多
双方都保存对方的多个引用
例子:学生选课
public class TarenaCourse implements Serializable{
private int id;
private String name;
private int period;
private Set<TarenaStudent> students = new HashSet<TarenaStudent>();
}
public class TarenaStudent implements Serializable{
private int id;
private String name;
private Date birthday;
private Set<TarenaCourse> courses = new HashSet<TarenaCourse>();
}
create table student (
id number(10,0) not null,
name varchar2(15) not null,
birthday date,
primary key (id)
);
create table student_course (
sid number(10,0) not null,
cid number(10,0) not null,
primary key (sid, cid)
);
create table course (
id number(10,0) not null,
name varchar2(15) not null,
perion number(10,0),
primary key (id)
);
alter table student_course
add constraint fk_student
foreign key (sid)
references student(id);
alter table student_course
add constraint fk_course
foreign key (cid)
references course(id);
通过学生姓名找课程
select c.name from cource c,student s,student_course sc
where c.id=sc.cid and s.id=sc.sid
and s.name = 's1'
三、继承关系
public abstract class Computer implements Serializable{
private int id;
private int price;
private String manufacturer;
}
public class Desktop extends Computer{
private boolean isLCD;
}
public class Notepad extends Computer{
private float weight;
private float thickness;
}
1、建3张表 table per class
子类中保存父类的主键作为外键
create table computer_tpc (
id number(10,0) not null,
price number(10,0) not null,
manufacturer varchar2(30) not null,
primary key (id)
);
create table desktop_tpc (
computerid number(10,0) not null,
islcd char(1),
primary key (computerid)
);
create table notepad_tpc (
computerid number(10,0) not null,
weight float,
thickness float,
primary key (computerid)
);
alter table desktop_tpc
add constraint fk_desk_computer_tpc
foreign key (computerid)
references computer_tpc(id);
alter table notepad_tpc
add constraint fk_note_computer_tpc
foreign key (computerid)
references computer_tpc(id);
查找所有电脑的配制(只要是电脑就能被查出来)
select c.id,c.price,d.islcd,n.weight,n.thickness
from computer c, desktop d,notepad n
where c.id = d.computerid(+)
and c.id = n.computer(+)
2、建2张表
create table desktop (
id number(10,0) not null,
price number(10,0) not null,
manufacturer varchar2(30) not null,
islcd char(1),
primary key (id)
);
create table notepad (
id number(10,0) not null,
price number(10,0) not null,
manufacturer varchar2(30) not null,
weight float,
thickness float,
primary key (id)
);
3、建1张表
create table computer_tph (
id number(10,0) not null,
category char(1) not null,
price number(10,0) not null,
manufacturer varchar2(30) not null,
islcd char(1),
weight float,
thickness float,
primary key (id)
);
分享到:
相关推荐
4.功能点描述: (1)学生 查看个人信息、查看个人的晚归记录、填写请假单、查看请假的审核情况 (2)宿管员(有待完善) 基础信息管理、查看个人信息 (3)辅导员 审核请假单、导出学生晚归记录、查看个人信息、查看...
此外,为了数据持久化,可能采用了关系型数据库,如MySQL,配合JDBC(Java Database Connectivity)进行数据库操作,保证数据的安全存储和高效检索。同时,系统可能应用了MVC(Model-View-Controller)设计模式,将...
Java认证是全球认可的Java程序员技能评估标准,2009年的Java认证辅导资料涵盖了当时最新的Java技术,旨在帮助考生顺利通过考试并提升其Java编程能力。这些资料可能包括了Oracle Certified Associate (OCA), Oracle ...
**4.4 JDBC资料辅导(4)** - **连接池**: 使用连接池提高应用程序性能。 - **性能优化**: 提高JDBC应用性能的最佳实践。 - **安全最佳实践**: 如何安全地使用JDBC。 **4.5 JDBC资料辅导(5)** - **高级特性**: ...
### IBM DB2 全球认证考试辅导资料知识点详解 #### 一、IBM DB2全球认证考试辅导资料概览 IBM DB2全球认证考试辅导资料旨在帮助考生全面掌握DB2的相关知识和技术,顺利通过DB2全球认证考试。此资料侧重于实践操作...
系统基于Browser/Server模式开发,应用DreamweaverMX软件,结合JSP编程技术,并以SQLServer为数据库开发工具,在Windowsxp系统中使用JDBC驱动程序进行数据库连接。论文主要阐述的是机动车驾驶员考试辅导系统的操作...
7. **CoreJava辅导资料.zip**:这可能包含Java语言的基础教程或参考资料,包括类、对象、接口、异常处理、集合框架等内容,这些都是JavaWeb开发的基础。 8. **javaWeb基础技术辅导.zip**:这个文件很可能包含了详细...
使用JDBC链接MySQL数据库,实现登录注册功能,以及对信息增删改查。...项目技术:在Java开发环境下,Eclipse编写和MVC框架搭建,前端使用JSP、Layui和Json对象实现,通过JDBC链接数据库,运行在Tomcat服务器上。
4. **用户界面**:用户界面通常包含登录、注册、辅导员信息管理、考评标准设置、考评结果查询等功能。JSP页面结合HTML、CSS和JavaScript来实现交互和样式设计。 5. **权限控制**:为了保证数据安全,系统会实现用户...
4:发布威客在线信息:根据系统提示,发布网站的留言信息。 5:查看网站成交记录:根据系统提示,查看成交记录信息。 (2) 管理员部分 1:编辑系统用户信息:添加、编辑用户信息,包括发布者和管理员,以列表的...
开发人员会编写SQL语句,通过JDBC连接到数据库,执行CRUD(创建、读取、更新、删除)操作,以管理辅导员、学生和课程数据。 4. **Model-View-Controller(MVC)设计模式** MVC模式是JavaEE开发中常用的设计模式,...
3. **数据库连接**:通常使用JDBC(Java Database Connectivity)来实现数据库的连接、查询、插入等操作。在系统中,需要考虑事务管理、连接池等优化手段,以提高性能和资源利用率。 4. **会话管理**:为了保持用户...
4. 心理资源:收集各类心理辅导资料,如文章、音频、视频等,供师生学习和参考。 5. 辅导记录:记录每次心理咨询的过程,包括咨询主题、内容摘要、建议等,便于跟踪学生心理状态的变化。 6. 通知公告:发布学校...
4. **微信小程序开发**:微信小程序的开发涉及到WXML(WeChat Markup Language)和WXSS(WeChat Style Sheet)两种特殊的标记语言,以及JavaScript进行业务逻辑处理。开发者需要熟悉微信小程序的API和生命周期管理,...
它允许开发者编写自定义的SQL,避免了过多的JDBC代码,使得数据库操作更为简便。MyBatis与Spring的集成使得事务管理变得更加轻松,同时也支持动态SQL,提高了查询的灵活性。 JavaWeb技术是构建Web应用程序的基础,...
4. **MySQL数据库**:MySQL是一种关系型数据库管理系统,以其开源、免费、高效、稳定的特点广泛应用于各类项目。在本系统中,MySQL用于存储辅导员、学生、课程等各类信息,提供数据查询、更新、删除和插入等功能。 ...
通过这个项目,学习者不仅可以深入理解Java Web开发的基本原理,还能掌握数据库设计与管理、Web应用的部署与运行,同时,辅导视频和相关资料将进一步巩固和扩展理论知识,提高实际动手能力。无论是对于Java初学者...
4. **Spring Boot**:虽然标签中提到了Spring Boot,但在标题和描述中没有明确指出是否使用。Spring Boot是为了简化Spring应用的初始搭建以及开发过程。它集成了大量常用的第三方库配置,如JPA、RabbitMQ、MongoDB等...