博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
【凸优化】保留凸性的几个方式(交集、仿射变换、投影、线性分式变换)
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
TFS --- GrantBackup Plan Permissions Error
查看>>
傅里叶级数与积分方程
查看>>
软工作业3:用户体验分析——以“南通大学教务管理系统微信公众号”为例
查看>>
Css:背景色透明,内容不透明之终极方法!兼容所有浏览器
查看>>
我们前端跟后端是怎么合作的
查看>>
mysql存储过程
查看>>
洛谷P2556 [AHOI2002] 黑白图像压缩 [模拟]
查看>>
letecode [136] - Single Number
查看>>
linux下设置固定IP的方法
查看>>
VMware虚拟机下Linux系统的全屏显示
查看>>
net core体系-web应用程序-4asp.net core2.0 项目实战(任务管理系统)-2项目搭建
查看>>
高效的jQuery
查看>>
ubuntu 16.04 (软件应用)-输入法
查看>>
windos7修复引导扇区
查看>>
Leetcode总结之Backtracking
查看>>
Android开发学习之路-图片颜色获取器开发(1)
查看>>
StackExchange.Redis 官方文档(一) Basics
查看>>
nupkg 之破解 nodejs+electron-packager 打包exe的解包
查看>>