文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

基于javaweb+jsp如何实现企业车辆管理系统

2023-06-21 21:11

关注

今天就跟大家聊聊有关基于javaweb+jsp如何实现企业车辆管理系统,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

运行环境

Java≥6、Tomcat≥7.0、MySQL≥5.5

开发工具

idea/eclipse/MyEclipse

技术框架

JavaWeb JavaBean JSP MVC MySQL Tomcat JavaScript idea eclipse MyEclipse Servlet SSM Maven …

适用

课程设计,大作业,毕业设计,项目练习,学习演示等

功能说明

登录、注册、退出、用户模块、公告模块、车辆模块的增删改查管理

部分代码实现JSP

<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %><html><head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    <title>车辆添加</title>    <%@ include file="include/head.jsp" %></head><body><div class="container-fluid">    <ul class="nav nav-tabs">        <li><a href="carList?" rel="external nofollow" >车辆列表</a></li>        <li class="active"><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >添加</a></li>    </ul>    <br/>    <form class="form-horizontal" role="form" action="carAdd" method="post" onsubmit="return check()">        <div class="form-group">            <label class="col-sm-3 control-label">车牌:</label>            <div class="col-sm-5">
</tr>        </c:forEach>        </tbody>    </table>    <div ><jsp:include page="split.jsp"/></div></div></body>
<div class="col-sm-5" >                ${vo.carPhone}            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">备注:</label>            <div class="col-sm-5" >                <textarea rows="3" class="form-control" id="carText" name="carText" disabled="disabled">${vo.carText}</textarea>            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label"></label>            <div class="col-sm-5" >                <input type="button" class="btn btn-pill btn-grad btn-success btn-sm" value="返回" onclick="javascript:history.back(-1);">            </div>        </div>    </form></div>
<div class="form-group">            <label class="col-sm-3 control-label">购买日期:</label>            <div class="col-sm-5">                <input type="text" class="form-control" id="carIndate" name="carIndate">            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">状态:</label>            <div class="col-sm-5">                <input name="carStatus" type="radio" value="正常" checked="checked"/>&nbsp;&nbsp;&nbsp;正常&nbsp;&nbsp;&nbsp;&nbsp;                <input name="carStatus" type="radio" value="故障"/>&nbsp;&nbsp;&nbsp;故障&nbsp;&nbsp;&nbsp;&nbsp;            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">驾驶员:</label>            <div class="col-sm-5">                <input type="text" class="form-control" id="carUser" name="carUser">            </div>        </div>        <div class="form-group">
</body><script type="text/javascript">    //提交之前进行检查,如果return false,则不允许提交    function check() {        //根据ID获取值        if (document.getElementById("carPai").value.trim().length == 0) {            alert("车牌不能为空!");            return false;        }        if (document.getElementById("carName").value.trim().length == 0) {            alert("品牌型号不能为空!");            return false;
<ul class="nav nav-tabs">        <li><a href="carList" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >车辆列表</a></li>        <li class="active"><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >编辑</a></li>    </ul>    <br/>    <form class="form-horizontal" role="form" action="carEdit" method="post" onsubmit="return check()">        <input type="hidden" class="form-control" id="id" name="id" value="${vo.id}"/>                    <div class="form-group">                <label class="col-sm-3 control-label">车牌:</label>                <div class="col-sm-5">                    <input type="text" class="form-control" id="carPai" name="carPai" value="${vo.carPai}">                </div>            </div>            <div class="form-group">                <label class="col-sm-3 control-label">品牌型号:</label>                <div class="col-sm-5">
<ul class="nav nav-tabs">        <li><a href="carList" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >车辆列表</a></li>        <li class="active"><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >编辑</a></li>    </ul>    <br/>    <form class="form-horizontal" role="form" action="carEdit" method="post" onsubmit="return check()">        <input type="hidden" class="form-control" id="id" name="id" value="${vo.id}"/>                    <div class="form-group">                <label class="col-sm-3 control-label">车牌:</label>                <div class="col-sm-5">                    <input type="text" class="form-control" id="carPai" name="carPai" value="${vo.carPai}">                </div>            </div>            <div class="form-group">                <label class="col-sm-3 control-label">品牌型号:</label>                <div class="col-sm-5">
<th>里程</th>            <th>购买日期</th>            <th>状态</th>            <th>驾驶员</th>            <th>联系方式</th>            <th>操作</th>        </tr>        </thead>        <tbody>        <c:forEach items="${list}" var="vo">            <tr>                <td>${vo.carPai}</td>                <td><a href="carGet?id=${vo.id}" rel="external nofollow" >${vo.carName}</a></td>                <td>${vo.carChexing}</td>                <td>${vo.carCheng}</td>                <td>${vo.carIndate}</td>
<input type="submit" class="btn btn-pill btn-grad btn-warning btn-sm" value="保存">                <input type="button" class="btn btn-pill btn-grad btn-success btn-sm" value="返回" onclick="javascript:history.back(-1);">            </div>        </div>    </form></div></body><script type="text/javascript">    //提交之前进行检查,如果return false,则不允许提交    function check() {        //根据ID获取值        if (document.getElementById("carPai").value.trim().length == 0) {            alert("车牌不能为空!");            return false;        }        if (document.getElementById("carName").value.trim().length == 0) {
</script></html><%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %><html><head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    <title>车辆详情</title>    <%@ include file="include/head.jsp" %></head><body><div class="container-fluid">    <ul class="nav nav-tabs">        <li><a href="carList" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >用户列表</a></li>
${vo.carIndate}            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">状态:</label>            <div class="col-sm-5" >                ${vo.carStatus}            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">驾驶员:</label>            <div class="col-sm-5" >                ${vo.carUser}            </div>        </div>        <div class="form-group">
<input type="text" class="form-control" name="keyword" id="keyword" placeholder="品牌型号">            <input type="hidden" id="searchColumn" name="searchColumn" value="car_name"/>        </div>        <button class="btn btn-pill btn-grad btn-info btn-sm"><span class="glyphicon glyphicon-search" aria-hidden="true"></span>查询        </button>    </form>    <br/>    <table class="table table-hover table-bordered">        <thead>        <tr>            <th>车牌</th>            <th>品牌型号</th>
<div class="col-sm-5">                    <input type="text" class="form-control" id="carPhone" name="carPhone" value="${vo.carPhone}">                </div>            </div>        <div class="form-group">            <label class="col-sm-3 control-label">备注:</label>            <div class="col-sm-5">                <textarea rows="3" class="form-control" id="carText" name="carText" placeholder="请输入内容......">${vo.carText}</textarea>            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label"></label>            <div class="col-sm-5">                <input type="submit" class="btn btn-pill btn-grad btn-warning btn-sm" value="保存">                <input type="button" class="btn btn-pill btn-grad btn-success btn-sm" value="返回" onclick="javascript:history.back(-1);">            </div>        </div>    </form>
</html><%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %><html><head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    <title>车辆管理</title>    <%@ include file="include/head.jsp" %></head><body><div class="container-fluid">    <ul class="nav nav-tabs">        <li class="active"><a href="carList" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >车辆列表</a></li>        <c:if test="${loginUser.userType == '管理员'}"><li><a href="car_add.jsp" rel="external nofollow" >添加</a></li></c:if>    </ul>    <br/>    <form class="form-inline" id="searchForm" action="carList" method="post">
if (document.getElementById("carPhone").value.trim().length == 0) {            alert("联系方式不能为空!");            return false;        }        return true;    }</script></html><%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %><html><head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    <title>车辆编辑</title>    <%@ include file="include/head.jsp" %></head><body>
<label class="col-sm-3 control-label">状态:</label>            <div class="col-sm-5">                       <input name="carStatus" type="radio" value="正常" ${vo.carStatus=='正常'?'checked':''}/>&nbsp;&nbsp;&nbsp;正常&nbsp;&nbsp;&nbsp;&nbsp;                       <input name="carStatus" type="radio" value="故障" ${vo.carStatus=='故障'?'checked':''}/>&nbsp;&nbsp;&nbsp;故障&nbsp;&nbsp;&nbsp;&nbsp;            </div>        </div>            <div class="form-group">                <label class="col-sm-3 control-label">驾驶员:</label>                <div class="col-sm-5">                    <input type="text" class="form-control" id="carUser" name="carUser" value="${vo.carUser}">                </div>            </div>            <div class="form-group">
return false;        }        if (document.getElementById("carChexing").value.trim().length == 0) {            alert("车型不能为空!");            return false;        }        if (document.getElementById("carCheng").value.trim().length == 0) {            alert("里程不能为空!");            return false;        }        if (document.getElementById("carIndate").value.trim().length == 0) {            alert("购买日期不能为空!");            return false;        }        if (document.getElementById("carUser").value.trim().length == 0) {            alert("驾驶员不能为空!");            return false;
<div class="col-sm-5" >                ${vo.carChexing}            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">里程:</label>            <div class="col-sm-5" >                ${vo.carCheng}            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">购买日期:</label>
<td>${vo.carUser}</td>                <td>${vo.carPhone}</td>                <td>                    <button onclick="window.location.href='carEditPre?id=${vo.id}'"                            class="btn btn-pill btn-grad btn-info btn-xs"                            <c:if test="${loginUser.userType != '管理员'}">disabled="disabled" title="没有权限!!!"</c:if>                             >                        <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>                        编辑                    </button>                    <button onclick="if(window.confirm('将要删除:${vo.carName}?'))window.location.href='carDelete?id=${vo.id}'"                            class="btn btn-pill btn-grad btn-default btn-xs"                            <c:if test="${loginUser.userType != '管理员'}">disabled="disabled" title="没有权限!!!"</c:if> >                        <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>                        删除                    </button>
</div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">品牌型号:</label>            <div class="col-sm-5">                <input type="text" class="form-control" id="carName" name="carName">            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">车型:</label>            <div class="col-sm-5">                <input type="text" class="form-control" id="carChexing" name="carChexing">            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">里程:</label>            <div class="col-sm-5">                <input type="text" class="form-control" id="carCheng" name="carCheng">            </div>
</ul>    <br/>    <form class="form-horizontal" role="form" action="#" method="post">        <input type="hidden" class="form-control" id="id" name="id" value="${vo.id}"/>        <div class="form-group">            <label class="col-sm-3 control-label">车牌:</label>            <div class="col-sm-5" >                ${vo.carPai}            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">品牌型号:</label>            <div class="col-sm-5" >                ${vo.carName}            </div>        </div>        <div class="form-group">
<div class="col-sm-5">                <input type="text" class="form-control" id="carPhone" name="carPhone">            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label">备注:</label>            <div class="col-sm-5">                <textarea rows="3" class="form-control" id="carText" name="carText" placeholder="请输入内容......"></textarea>            </div>        </div>        <div class="form-group">            <label class="col-sm-3 control-label"></label>
if (document.getElementById("carChexing").value.trim().length == 0) {            alert("车型不能为空!");            return false;        }        if (document.getElementById("carCheng").value.trim().length == 0) {            alert("里程不能为空!");            return false;        }        if (document.getElementById("carIndate").value.trim().length == 0) {            alert("购买日期不能为空!");            return false;        }        if (document.getElementById("carUser").value.trim().length == 0) {            alert("驾驶员不能为空!");            return false;        }        if (document.getElementById("carPhone").value.trim().length == 0) {            alert("联系方式不能为空!");            return false;        }        return true;
</div>            </div>            <div class="form-group">                <label class="col-sm-3 control-label">车型:</label>                <div class="col-sm-5">                    <input type="text" class="form-control" id="carChexing" name="carChexing" value="${vo.carChexing}">                </div>            </div>            <div class="form-group">                <label class="col-sm-3 control-label">里程:</label>                <div class="col-sm-5">                    <input type="text" class="form-control" id="carCheng" name="carCheng" value="${vo.carCheng}">                </div>            </div>            <div class="form-group">                <label class="col-sm-3 control-label">购买日期:</label>                <div class="col-sm-5">                    <input type="text" class="form-control" id="carIndate" name="carIndate" value="${vo.carIndate}">                </div>            </div>

效果图

基于javaweb+jsp如何实现企业车辆管理系统

基于javaweb+jsp如何实现企业车辆管理系统

基于javaweb+jsp如何实现企业车辆管理系统

基于javaweb+jsp如何实现企业车辆管理系统

基于javaweb+jsp如何实现企业车辆管理系统看完上述内容,你们对基于javaweb+jsp如何实现企业车辆管理系统有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯