博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小郡肝火锅点餐系统——部分代码实现
阅读量:4991 次
发布时间:2019-06-12

本文共 5076 字,大约阅读时间需要 16 分钟。

数据库代码:

create database xiaojungan;use xiaojungan;create table IF NOT EXISTS `t_user` (  `id` int NOT NULL AUTO_INCREMENT,  `username` varchar(50) NOT NULL ,  `password` varchar(50) NULL ,  `role` int(11) NOT NULL DEFAULT '0' COMMENT '用户角色',  PRIMARY KEY (`id`)) AUTO_INCREMENT=100;CREATE TABLE `t_food` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `foodname` varchar(100) NOT NULL,  `type_id` int(11) ,  `descript` longtext ,  `price` decimal(10,2) ,  `onSale` int(11) default '0',  `imgAddress` varchar(200) ,  PRIMARY KEY (`id`)) ;CREATE TABLE `t_type` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `typename` varchar(20) ,  PRIMARY KEY (`id`)) ;CREATE TABLE `t_order` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `food_id` int(11),  `user_id` int(11),  `table_id` int(11),  `food_account` int(11) ,  PRIMARY KEY (`id`));CREATE TABLE `t_table` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `tablename` varchar(20) ,  `user_id` int(11),  PRIMARY KEY (`id`))

 

c3p0-config.xml

com.mysql.cj.jdbc.Driver
jdbc:mysql://localhost:3306/xiaojungan?serverTimezone=Asia/Shanghai
root
147258369
10
1
100
10

 

Java

 

FoodDaoimpl.java

package dao.daoImpl;import bean.Food;import util.C3P0Util;import dao.FoodDao;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.util.ArrayList;import java.util.List;public class FoodDaoImpl implements FoodDao{    @Override    public void addFood(Food food) throws Exception{        String sql = "INSERT INTO `xiaojungan`.`t_food`(`foodname`,`type_id`,`descript`,`price`,`saling`,`img`) VALUES (?,?,?,?,?,?)";        try(                Connection conn = C3P0Util.getConnection();                PreparedStatement ps = conn.prepareStatement(sql);        ) {            ps.setString(1,food.getFoodname());            ps.setInt(2, food.getType_id());            ps.setString(3,food.getDescript());            ps.setBigDecimal(4, food.getPrice());            ps.setInt(5,food.getSaling());            ps.setString(6, food.getImg());            ps.executeUpdate();        } catch (Exception e) {            e.printStackTrace();            throw new RuntimeException("添加失败!");        }    }    @Override    public List
findSalingFoods() throws Exception{ String sql = "select * from t_food where saling=?"; List
foodList = new ArrayList<>(); try( Connection conn = C3P0Util.getConnection(); PreparedStatement ps = conn.prepareStatement(sql) ) { ps.setInt(1, 1); try ( ResultSet rs = ps.executeQuery() ) { //将查询出的结果数据封装到List对象中 while(rs.next()){ Food b = new Food(); b.setId(rs.getInt("id")); b.setFoodname(rs.getString("foodname")); b.setType_id(rs.getInt("type_id")); b.setDescript(rs.getString("descript")); b.setPrice(rs.getBigDecimal("price")); b.setImg(rs.getString("img")); b.setSaling(rs.getInt("saling")); foodList.add(b); } } catch (Exception e) { e.printStackTrace(); } }catch (Exception e){ e.printStackTrace(); } return foodList; } @Override public Food findFood_id(int id) throws Exception { String sql = "select * from t_food where id=?"; Food b = null; try( Connection conn = C3P0Util.getConnection(); PreparedStatement ps = conn.prepareStatement(sql) ) { ps.setInt(1, id); try ( ResultSet rs = ps.executeQuery() ) { //将查询出的结果数据封装到Food对象中 if(rs.next()){ b = new Food(); b.setId(rs.getInt("id")); b.setFoodname(rs.getString("foodname")); b.setType_id(rs.getInt("type_id")); b.setDescript(rs.getString("descript")); b.setPrice(rs.getBigDecimal("price")); b.setSaling(rs.getInt("saling")); b.setImg(rs.getString("img")); return b; } } catch (Exception e) { e.printStackTrace(); } }catch (Exception e){ e.printStackTrace(); } return b; }}

 

Html代码

index.html

    
小郡肝

 

转载于:https://www.cnblogs.com/lj520fj/p/10944842.html

你可能感兴趣的文章
Android基础总结(5)——数据存储,持久化技术
查看>>
关于DataSet事务处理以及SqlDataAdapter四种用法
查看>>
bootstrap
查看>>
http://lorempixel.com/ 可以快速产生假图
查看>>
工程经验总结之吹水"管理大境界"
查看>>
为什么JS动态生成的input标签在后台有时候没法获取到
查看>>
20189210 移动开发平台第六周作业
查看>>
java之hibernate之基于外键的双向一对一关联映射
查看>>
rxjs一句话描述一个操作符(1)
查看>>
第一次独立上手多线程高并发的项目的心路历程
查看>>
ServiceStack 介绍
查看>>
Centos7下载和安装教程
查看>>
无谓的通宵加班之后的思索
查看>>
S1的小成果:MyKTV系统
查看>>
从setting文件导包
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
union和union all
查看>>
Github 开源:使用控制器操作 WinForm/WPF 控件( Sheng.Winform.Controls.Controller)
查看>>
PMD使用提醒
查看>>
Codeforces 887D Ratings and Reality Shows
查看>>