首页 > 代码库 > 餐桌、菜系管理
餐桌、菜系管理
紧接着上次的无线点餐项目,我们今天做餐桌和菜系管理。
1. 餐桌、菜系管理
5.1餐桌、菜系管理流程图解
5.2创建数据库、表
项目中采用MySQL数据库存储数据,首先我们需要在MySQL数据库中建立数据库:
/* 删除无线点餐平台数据库,如果存在 */
drop database if exists wirelessplatform;
/* 创建数据,并设置编码 */
create database wirelessplatform default character set utf8;
在数据库中我们通过表来存储数据,我们需要建立数据表来存储对应的数据,那么我们的餐桌以及菜系表对应的有哪些字段呢?我们通过餐桌以及菜系的E-R图进行分析:
5.3餐桌及菜系E-R图
5.4创建餐桌以及菜系表
根据以上餐桌以及菜系的E-R图我们可以创建餐桌以及菜系的数据表,创建表的SQL语句如下:
/* 使用数据库 */
use wirelessplatform;
/*============================*/
/* Table: 餐桌表结构 */
/*============================*/
create table t_board(
/* 餐桌编号,自动增长 */
bid int auto_increment,
/* 餐桌名称 */
bName varchar(30) not null,
/* 是否预定,0表示空闲,1表示预定 */
isBook int(1) default 0,
/* 预定时间 */
bookTime varchar(60) default null,
/* 设置编号为主键 */
primary key(bid)
);
/*============================*/
/* Table: 菜系表结构 */
/*============================*/
create table t_cuisine(
/* 菜系编号,自动增长 */
cid int auto_increment,
/* 菜系名称 */
name varchar(30) not null,
/* 设置编号为主键 */
primary key(cid)
);
5.5在MyEclipse中搭建项目开发的包结构
在项目开发中需要分模块开发,每个模块所负责的功能是不同的,这样可以使程序的结构更加清晰,同时也方便于维护。
项目的分包结构如下:
5.6创建餐桌和菜系的实体类
疑惑:想想在数据库中使用表来存储数据,那么在程序中使用什么来存储数据呢? 在程序中使用JavaBean对象来存储数据,一个最简单的JavaBean对象只是用来存储数据,作为数据传输的桥梁。下面我们来建立餐桌和菜系的JavaBean。
根据数据表分析我们可以建立餐桌与菜系的实体类图:
根据餐桌实体类图我们建立对应的实体类:
/**
* 餐桌实体类
* @author Leo.Chen
*/
public class Board {
// 餐桌编号
private int bid;
// 餐桌名称
private String bName;
// 是否预定:0表示空闲,1表示预定
private int isBook;
// 预定时间
private String bookTime;
// 省略set get...
}
菜系实体类:
/**
* 菜系实体类
* @author Leo.Chen
*/
public class Cuisine {
// 菜系编号
private int cid;
// 菜系名称
private String name;
// 省略set get
}
5.7餐桌和菜系的CRUD实现
5.7.1在src目录下添加c3p0配置文件c3p0-config.xml
我们的web应用程序需要连接到数据库,把我们网站中的数据保存到数据库中,那么程序与数据库之间怎样才能建立与数据库的连接呢?
我们使用的技术是c3p0连接池技术,使用c3p0连接池来管理数据库连接,当我们需要数据库连接的时候就直接从c3p0连接池中获取即可。
使用c3p0就需要配置c3p0的配置文件:
c3p0-config.xml 配置文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
<default-config>
<!-- mysql的数据库连接驱动 -->
<property name="driverClass">com.mysql.jdbc.Driver</property>
<!-- 数据库连接地址 -->
<property name="jdbcUrl">jdbc:mysql://localhost:3306/wirelessplatform</property>
<!-- 用户名 -->
<property name="user">root</property>
<!-- 密码 -->
<property name="password">root</property>
<property name="acquireIncrement">5</property>
<property name="initialPoolSize">10</property>
<property name="minPoolSize">5</property>
<property name="maxPoolSize">20</property>
</default-config>
</c3p0-config>
注意:
1.c3p0的配置文件必须放置在src目录下。
2.配置文件的名字必须是c3p0-config.xml 不能随意取名。
5.7.2创建JDBC工具类获取c3p0连接
在使用dbutils组件操作数据库的时,对数据进行CRUD操作需要频繁的获取 连接和关闭连接,那么这些获取连接和关闭连接的代码属于重复的代码,我们可以将这些代码抽取到一个工具类中,在工具类中管理数据库连接的获取和关闭工作,同时这些关闭和获取的代码也可以使用c3p0技术来实现,因此最简化的工具类代码可以这样写,代码如下:
JdbcUtil.java类:
import com.mchange.v2.c3p0.ComboPooledDataSource;
/**
* 数据库连接池工具类
* @author Leo.Chen
*/
public class JdbcUtil {
// 自定加载src下的c3p0配置文件
private static ComboPooledDataSource dataSource = new ComboPooledDataSource();
public static ComboPooledDataSource getDataSource() {
return dataSource;
}
}
5.7.3 餐桌和菜系Dao实现
Dao(Data Access Object)数据访问对象。负责访问数据库,对数据进行增删改查等处理。数据操作的模型图如下:
BoardDao对象对数据库进行CRUD操作
l 餐桌Dao实现:
BoardDao接口如下:
public interface BoardDao {
public void save(Board board);
public void delete(int id);
public void update(Board board);
public Board queryAll(int id);
}
BoardDaoImpl实现类如下:
public class BoardDaoImpl implements BoardDao {
@Override
public void save(Board board) {
// 建立sql语句
String excuteSql = "insert into t_board(bName,isBook,bookTime) values (?,?,?)";
// 封装参数
Object[] param = { board.getbName(), board.getIsBook(), board.getBookTime() };
try {
// 执行sql语句
runner.update(excuteSql, param);
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
@Override
public void delete(int id) {
String excuteSql = "delete from t_board where bid=?";
try {
runner.update(excuteSql, id);
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
@Override
public void update(Board board) {
String excuteSql = "update t_board b set b.bname=?, b.isBook=?, b.bookTime=? where b.bid=?";
Object[] param = { board.getbName(), board.getIsBook(), board.getBookTime(), board.getBid()};
try {
runner.update(excuteSql, param);
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
@Override
public List<Board> queryAll() {
String sql = "select * from t_board";
List<Board> resultList = null;
try {
resultList = runner.query(sql, new BeanListHandler<Board>(Board.class));
} catch (SQLException e) {
e.printStackTrace();
resultList = new ArrayList<Board>();
}
return resultList;
}
}
菜系Dao实现
CuisineDao接口如下:
public interface CuisineDao {
public int save(Cuisine cuisine);
public int delete(int id);
public int update(Cuisine cuisine);
public Cuisine queryAll();
public List<Cuisine> queryByName(String name);
}
CuisineDaoImpl实现类如下:
public class CuisineDaoImpl implements CuisineDao {
@Override
public void save(Cuisine cuisine) {
try {
String sql = "insert into t_cuisine (name) values(?)";
runner.update(sql, cuisine.getName());
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
@Override
public void delete(int id) {
try {
String sql = "delete from t_cuisine where cid=?";
runner.update(sql, id);
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
@Override
public void update(Cuisine cuisine) {
try {
String sql = "update t_cuisine c set c.name=? where c.cid=?";
runner.update(sql, cuisine.getName(), cuisine.getCid());
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
@Override
public List<Cuisine> queryAll() {
String sql = "select * from t_cuisine";
List<Cuisine> resultList = null;
try {
resultList = runner.query(sql, new BeanListHandler<Cuisine>(Cuisine.class));
} catch (SQLException e) {
e.printStackTrace();
resultList = new ArrayList<Cuisine>();
}
return resultList;
}
@Override
public List<Cuisine> queryByName(String name) {
List<Cuisine> resultList = null;
try {
String sql = "select * from t_cuisine where name like ‘%"+name+"%‘";
resultList = runner.query(sql, new BeanListHandler<Cuisine>(Cuisine.class));
} catch (SQLException e) {
e.printStackTrace();
resultList = new ArrayList<Cuisine>();
}
return resultList;
}
}
餐桌、菜系管理