简单的金苑宾馆客房系统前端与后端的开发(html+css+jsp+数据库)---河北金融19计科一班结课设计(一)

本文主要是介绍简单的金苑宾馆客房系统前端与后端的开发(html+css+jsp+数据库)---河北金融19计科一班结课设计(一),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

今天是2020年12月12日,课设设置了已经有一周多的时间了,直到昨天晚上才明白了前端与后端的交互(课设是jsp后端的开发,HTML+css前端没学过,最近看了一些教程视频才多少有点了解,其实只有后端开发结课设计就算合格了,但是本着精益求精的精神,还是打算做点美化)所以开个帖子简单记录一下这个小系统的制作。
课程要求:在这里插入图片描述

首先说下思:
用DW套用模板做前端,jsp写代码做后端连接数据库,然后把DW写的html和css导入到jsp中在通过跳转完成前端与后端的交互

目前代码完成情况:已完成管理员与用户的登录,用户的注册,以及下订单时填写信息都可以连接到数据库。

<!DOCTYPE html>
<html lang="zh-CN">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><!-- 阿里巴巴矢量图标库--><link rel="stylesheet" href="https://at.alicdn.com/t/font_1757504_k6qar61imrp.css"><link rel="stylesheet" href="index.css"><title>Login</title>
</head>
<body  ><div id="Layer1" style="position:absolute; width:100%; height:100%; z-index:-1">    
<img src="images/timg.jpg" height="100%" width="100%"/>    
</div> <div class="from_wrapper"><div class="header">金苑招待中心</div><form  action="http://localhost:8080/binguan/testlogin.jsp" method="post">  <div class="input_wrapper"><div class="broder_wrapper"><input type="text" name="username" placeholder="username" class="broder_item"></div><div class="broder_wrapper"><input type="password" name="password" placeholder="password" class="broder_item">       </div><div class="active"><input type="submit" class="btn" value="登录"></div></div></form><form  action="http://localhost:8080/binguan/register." method="post">  <div class="input_wrapper"><div class="active"><input type="submit" class="btn" value="注册"></div></div></form><div class="icon_wrapper"><!-- 阿里巴巴矢量图标库图标--><i class="iconfont icon-weixin"></i><i class="iconfont icon-weibo"></i><i class="iconfont icon-GitHub"></i></div></div></body>
</html>
/* CSS Document */#BodyBg{ width: 100%;  height: 100%;  position: absolute;  left: 0px;  top: 0px;  z-index: 0; 
} .stretch { width:100%; height:100%; 
} 
*{padding: 0;margin: 0;
}html{height: 100%;
}body{height: 100%;display:flex;align-items: center;justify-content: center;background-color: #1e90ff;
}.from_wrapper{width: 300px;background-color: #2f3542;color: #fff;border-radius: 2px;padding: 50px;
}.from_wrapper .header{text-align: center;font-size: 35px;text-transform: uppercase;line-height: 100%;
}.from_wrapper .input_wrapper{margin-top: 30px;
}.from_wrapper .input_wrapper input{background-color: #2f3542;border: 0;width: 100%;text-align: center;font-size: 15px;color: #fff;outline: none;
}.from_wrapper .input_wrapper input::placeholder{text-transform: uppercase;
}/* 渐变边框 思路:下边做一个渐变图层,上边再做一个小一圈的输入框*/
.from_wrapper .input_wrapper .broder_wrapper{background-image: linear-gradient(to right,#e8198b,#0eb4dd);width: 100%;height: 50px;margin-bottom: 20px;border-radius: 30px;display: flex;align-items: center;justify-content: center;
}.from_wrapper .input_wrapper .broder_wrapper .broder_item{height: calc(100% - 4px);width: calc(100% - 4px);border-radius: 30px;
}.from_wrapper .active{display: flex;justify-content: center;
}
.from_wrapper .active .btn{width: 60%;text-transform: uppercase;border: 2px solid #1e90ff;text-align: center;line-height: 50px;border-radius: 30px;cursor: pointer;transition: .2s;
}.from_wrapper .active .btn:hover{background-color: #1e90ff;
}.from_wrapper .icon_wrapper{text-align: center;width: 60%;margin: 0 auto;margin-top: 20px;border-top: 1px dashed rgb(146, 146, 146);padding: 20px;
}.from_wrapper .icon_wrapper i{font-size: 20px;color: rgb(187, 187, 187);cursor: pointer;border: 1px solid #fff;padding: 5px;border-radius: 20px;
}

testlogin.jsp


<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%@ page import="java.sql.*" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><base href="<%=basePath%>"><title>My JSP 'testLogin.jsp' starting page</title><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0">    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"><meta http-equiv="description" content="This is my page"><!--<link rel="stylesheet" type="text/css" href="styles.css">--></head><body><% String username = request.getParameter("username");String password = request.getParameter("password");Connection conn = null;PreparedStatement pstmt = null;ResultSet rs = null;try{Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");conn=DriverManager.getConnection("jdbc:sqlserver://127.0.0.1:1433;DatabaseName=binguan","sa","123456");String sql="select * from zhanghao where username=? and password=?";pstmt=conn.prepareStatement(sql);pstmt.setString(1,username);pstmt.setString(2,password);rs = pstmt.executeQuery();if(rs.next()){String sql1="select ID from zhanghao where username=?";pstmt.setString(1,username);rs = pstmt.executeQuery();if(username.equals("admin")){response.sendRedirect("adsuccess.jsp");}else{response.sendRedirect("http://localhost:8080/qianduan/jieshao.html");}}else{response.sendRedirect("http://localhost:8080/qianduan/denglu.html");}rs.close();pstmt.close();conn.close();}catch(ClassNotFoundException e){e.printStackTrace();}catch(SQLException e){e.printStackTrace();}%></body>
</html>

后面就复制代码了,几次test检测的代码大同小异。
附一张数据库的图
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

这篇关于简单的金苑宾馆客房系统前端与后端的开发(html+css+jsp+数据库)---河北金融19计科一班结课设计(一)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/206065

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

Hadoop企业开发案例调优场景

需求 (1)需求:从1G数据中,统计每个单词出现次数。服务器3台,每台配置4G内存,4核CPU,4线程。 (2)需求分析: 1G / 128m = 8个MapTask;1个ReduceTask;1个mrAppMaster 平均每个节点运行10个 / 3台 ≈ 3个任务(4    3    3) HDFS参数调优 (1)修改:hadoop-env.sh export HDFS_NAMENOD

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

MySQL数据库宕机,启动不起来,教你一招搞定!

作者介绍:老苏,10余年DBA工作运维经验,擅长Oracle、MySQL、PG、Mongodb数据库运维(如安装迁移,性能优化、故障应急处理等)公众号:老苏畅谈运维欢迎关注本人公众号,更多精彩与您分享。 MySQL数据库宕机,数据页损坏问题,启动不起来,该如何排查和解决,本文将为你说明具体的排查过程。 查看MySQL error日志 查看 MySQL error日志,排查哪个表(表空间