一个精简的基于ssm框架开发的酒店后台管理系统; 其主要功能包括对住客,房间和会员信息管理,同时可以下载房间和会员信息的数据; 前端实现采用了layui-qadmin模板;整体简约大气,使用方便快捷。
ag凯发k8国际首页
管理员界面
用户预定界面
部分代码展示
@controller@requestmapping("/home")public class homecontroller { @autowired homeserviceimpl homeservice; @requestmapping("/add") public string add(home home, model model) throws ioexception{ string sqlpath = null; //定义文件保存的本地路径 string localpath="e:java 项目hotel_managesrcmainwebappupload"; //定义 文件名 string filename=null; if(!home.getfile().isempty()){ //生成uuid作为文件名称 string uuid = uuid.randomuuid().tostring().replaceall("-",""); //获得文件类型(可以判断如果不是图片,禁止上传) string contenttype=home.getfile().getcontenttype(); //获得文件后缀名 string suffixname=contenttype.substring(contenttype.indexof("/") 1); //得到 文件名 filename=uuid "." suffixname; system.out.println(filename); //文件保存路径 home.getfile().transferto(new file(localpath filename)); } //把图片的相对路径保存至数据库 sqlpath = "/upload/" filename; system.out.println(sqlpath); home.setimg(sqlpath); homeservice.addhome(home); model.addattribute("home",home); return "home_show"; } @requestmapping("/delete") public string delete(integer id){ homeservice.deletehomebyid(id); return "redirect:/home/list"; } @requestmapping("/list") public modelandview list(){ modelandview mv = new modelandview(); list
获取源码请关注后私信“20220520”
ag凯发k8国际的版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。