飞道的博客

SpringBoot+Vue项目大学生租房平台

407人阅读  评论(0)

文末获取源码 

开发语言:Java

框架:springboot

JDK版本:JDK1.8

服务器:tomcat7

数据库:mysql 5.7/8.0

数据库工具:Navicat11

开发软件:eclipse/myeclipse/idea

Maven包:Maven3.3.9

浏览器:谷歌浏览器

一、前言介绍

互联网发展至今,无论是其理论还是技术都已经成熟,而且它广泛参与在社会中的方方面面。它让信息都可以通过网络传播,搭配信息管理工具可以很好地为人们提供服务。针对大学生租房信息管理混乱,出错率高,信息安全性差,劳动强度大,费时费力等问题,采用大学生租房平台可以有效管理,使信息管理能够更加科学和规范。

大学生租房平台在 Eclipse环境中,使用Java语言进行编码,使用Mysql创建数据表保存本系统产生的数据。系统可以提供信息显示和相应服务,其管理员房东和用户,对房东提交的信息审批信息进行审核,审核房东发布的房源信息。房东提交信息审批信息,发布房源信息,审核用户租房订单。用户收藏房屋,租用房屋,支付租房订单。

总之,大学生租房平台集中管理信息,有着保密性强,效率高,存储空间大,成本低等诸多优点。它可以降低信息管理成本,实现信息管理计算机化。 

二、功能需求

不同的系统提供的服务也不相同,其对应的功能也不相同,所以,系统开工前,需要明确其用途,确定其功能。由此,才可以进行各个任务的开展。

大学生租房平台经过分析,确定了其需要设置管理员的角色,其操作的功能通过用例图展示(见下图)。管理员管理房东和用户,对房东提交的信息审批信息进行审核,审核房东发布的房源信息。 

大学生租房平台经过分析,确定了其需要设置房东的角色,其操作的功能通过用例图展示(见下图)。房东提交信息审批信息,发布房源信息,审核用户租房订单。

三、用户功能实现

3.1房源信息

用户进入前台之后可以查看房源信息。其页面见下图。本页面显示所有要出租的房源信息,用户可以根据房源名称,户型,出租类型等字段查询所需房源信息。

3.2房源详细信息

用户进入前台之后可以查看房源详细信息。其页面见下图。用户点击房源的标题即可查看其相关介绍。用户可以收藏房源,或在当前页面点击租房按钮进行租房。 

3.3提交租房信息

用户进入前台之后可以对需要的房源提交租房信息。其页面见下图。用户对需要的房源进行租房,提交租房信息时要设置申请日期。 

 ​​​​​​

3.4订单信息管理

用户进入后台功能操作区之后可以查看订单信息。其页面见下图。用户支付未支付的租房订单,查看租房订单是否通过房东审核。 

四、管理员功能实现

4.1房东管理

管理员进入指定功能操作区之后可以管理房东。其页面见下图。房东的资料需要管理员负责管理,包括修改,新增,删除等操作。 

4.2信息审批管理

管理员进入指定功能操作区之后可以管理信息审批信息。其页面见下图。房东上传房产证和身份证信息,管理员查看后进行审批,审批通过之后,房东才可以发布房源信息。

4.3房源信息管理

管理员进入指定功能操作区之后可以管理房源信息。其页面见下图。房东发布的房源信息需要先通过管理员的审核,然后才能展示在前台进行出租。

五、房东功能实现

5.1信息审批管理

房东进入指定功能操作区之后可以管理信息审批信息。其页面见下图。房东查看信息审批信息是否通过审核,只有通过审核之后,房东才可以发布房源信息。 

5.2订单信息管理

房东进入指定功能操作区之后可以管理订单信息。其页面见下图。用户租房后,房东需要查看用户是否支付,而且还要审核用户的租房订单。 

六、部分核心代码 


  
  1. /**
  2. * 上传文件映射表
  3. */
  4. @RestController
  5. @RequestMapping("file")
  6. @SuppressWarnings({"unchecked","rawtypes"})
  7. public class FileController{
  8. @Autowired
  9. private ConfigService configService;
  10. /**
  11. * 上传文件
  12. */
  13. @RequestMapping("/upload")
  14. public R upload (@RequestParam("file") MultipartFile file,String type) throws Exception {
  15. if (file.isEmpty()) {
  16. throw new EIException( "上传文件不能为空");
  17. }
  18. String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf( ".")+ 1);
  19. File path = new File(ResourceUtils.getURL( "classpath:static").getPath());
  20. if(!path.exists()) {
  21. path = new File( "");
  22. }
  23. File upload = new File(path.getAbsolutePath(), "/upload/");
  24. if(!upload.exists()) {
  25. upload.mkdirs();
  26. }
  27. String fileName = new Date().getTime()+ "."+fileExt;
  28. File dest = new File(upload.getAbsolutePath()+ "/"+fileName);
  29. file.transferTo(dest);
  30. /**
  31. * 如果使用idea或者eclipse重启项目,发现之前上传的图片或者文件丢失,将下面一行代码注释打开
  32. * 请将以下的"D:\\springbootq33sd\\src\\main\\resources\\static\\upload"替换成你本地项目的upload路径,
  33. * 并且项目路径不能存在中文、空格等特殊字符
  34. */
  35. // FileUtils.copyFile(dest, new File("D:\\springbootq33sd\\src\\main\\resources\\static\\upload"+"/"+fileName)); /**修改了路径以后请将该行最前面的//注释去掉**/
  36. if(StringUtils.isNotBlank(type) && type.equals( "1")) {
  37. ConfigEntity configEntity = configService.selectOne( new EntityWrapper<ConfigEntity>().eq( "name", "faceFile"));
  38. if(configEntity== null) {
  39. configEntity = new ConfigEntity();
  40. configEntity.setName( "faceFile");
  41. configEntity.setValue(fileName);
  42. } else {
  43. configEntity.setValue(fileName);
  44. }
  45. configService.insertOrUpdate(configEntity);
  46. }
  47. return R.ok().put( "file", fileName);
  48. }
  49. /**
  50. * 下载文件
  51. */
  52. @IgnoreAuth
  53. @RequestMapping("/download")
  54. public ResponseEntity< byte[]> download( @RequestParam String fileName) {
  55. try {
  56. File path = new File(ResourceUtils.getURL( "classpath:static").getPath());
  57. if(!path.exists()) {
  58. path = new File( "");
  59. }
  60. File upload = new File(path.getAbsolutePath(), "/upload/");
  61. if(!upload.exists()) {
  62. upload.mkdirs();
  63. }
  64. File file = new File(upload.getAbsolutePath()+ "/"+fileName);
  65. if(file.exists()){
  66. /*if(!fileService.canRead(file, SessionManager.getSessionUser())){
  67. getResponse().sendError(403);
  68. }*/
  69. HttpHeaders headers = new HttpHeaders();
  70. headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
  71. headers.setContentDispositionFormData( "attachment", fileName);
  72. return new ResponseEntity< byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.CREATED);
  73. }
  74. } catch (IOException e) {
  75. e.printStackTrace();
  76. }
  77. return new ResponseEntity< byte[]>(HttpStatus.INTERNAL_SERVER_ERROR);
  78. }
  79. }

 


  
  1. RestController
  2. @RequestMapping( "/kechengchengji")
  3. public class KechengchengjiController {
  4. @Autowired
  5. private KechengchengjiService kechengchengjiService;
  6. /**
  7. * 后端列表
  8. */
  9. @RequestMapping( "/page")
  10. public R page( @RequestParam Map<String, Object> params,KechengchengjiEntity kechengchengji,
  11. HttpServletRequest request){
  12. String tableName = request. getSession(). getAttribute( "tableName"). toString();
  13. if(tableName. equals( "jiaoshi")) {
  14. kechengchengji. setJiaoshizhanghao(( String)request. getSession(). getAttribute( "username"));
  15. }
  16. if(tableName. equals( "xuesheng")) {
  17. kechengchengji. setXuehao(( String)request. getSession(). getAttribute( "username"));
  18. }
  19. EntityWrapper< KechengchengjiEntity> ew = new EntityWrapper< KechengchengjiEntity>();
  20. PageUtils page = kechengchengjiService. queryPage(params, MPUtil. sort( MPUtil. between( MPUtil. likeOrEq(ew, kechengchengji), params), params));
  21. return R. ok(). put( "data", page);
  22. }
  23. /**
  24. * 前端列表
  25. */
  26. @IgnoreAuth
  27. @RequestMapping( "/list")
  28. public R list( @RequestParam Map<String, Object> params,KechengchengjiEntity kechengchengji,
  29. HttpServletRequest request){
  30. EntityWrapper< KechengchengjiEntity> ew = new EntityWrapper< KechengchengjiEntity>();
  31. PageUtils page = kechengchengjiService. queryPage(params, MPUtil. sort( MPUtil. between( MPUtil. likeOrEq(ew, kechengchengji), params), params));
  32. return R. ok(). put( "data", page);
  33. }
  34. /**
  35. * 列表
  36. */
  37. @RequestMapping( "/lists")
  38. public R list( KechengchengjiEntity kechengchengji){
  39. EntityWrapper< KechengchengjiEntity> ew = new EntityWrapper< KechengchengjiEntity>();
  40. ew. allEq( MPUtil. allEQMapPre( kechengchengji, "kechengchengji"));
  41. return R. ok(). put( "data", kechengchengjiService. selectListView(ew));
  42. }
  43. /**
  44. * 查询
  45. */
  46. @RequestMapping( "/query")
  47. public R query( KechengchengjiEntity kechengchengji){
  48. EntityWrapper< KechengchengjiEntity> ew = new EntityWrapper< KechengchengjiEntity>();
  49. ew. allEq( MPUtil. allEQMapPre( kechengchengji, "kechengchengji"));
  50. KechengchengjiView kechengchengjiView = kechengchengjiService. selectView(ew);
  51. return R. ok( "查询课程成绩成功"). put( "data", kechengchengjiView);
  52. }
  53. /**
  54. * 后端详情
  55. */
  56. @RequestMapping( "/info/{id}")
  57. public R info( @PathVariable("id") Long id){
  58. KechengchengjiEntity kechengchengji = kechengchengjiService. selectById(id);
  59. return R. ok(). put( "data", kechengchengji);
  60. }
  61. /**
  62. * 前端详情
  63. */
  64. @IgnoreAuth
  65. @RequestMapping( "/detail/{id}")
  66. public R detail( @PathVariable("id") Long id){
  67. KechengchengjiEntity kechengchengji = kechengchengjiService. selectById(id);
  68. return R. ok(). put( "data", kechengchengji);
  69. }
  70. /**
  71. * 后端保存
  72. */
  73. @RequestMapping( "/save")
  74. public R save( @RequestBody KechengchengjiEntity kechengchengji, HttpServletRequest request){
  75. kechengchengji. setId( new Date(). getTime()+ new Double( Math. floor( Math. random()* 1000)). longValue());
  76. //ValidatorUtils.validateEntity(kechengchengji);
  77. kechengchengjiService. insert(kechengchengji);
  78. return R. ok();
  79. }
  80. /**
  81. * 前端保存
  82. */
  83. @RequestMapping( "/add")
  84. public R add( @RequestBody KechengchengjiEntity kechengchengji, HttpServletRequest request){
  85. kechengchengji. setId( new Date(). getTime()+ new Double( Math. floor( Math. random()* 1000)). longValue());
  86. //ValidatorUtils.validateEntity(kechengchengji);
  87. kechengchengjiService. insert(kechengchengji);
  88. return R. ok();
  89. }
  90. /**
  91. * 修改
  92. */
  93. @RequestMapping( "/update")
  94. public R update( @RequestBody KechengchengjiEntity kechengchengji, HttpServletRequest request){
  95. //ValidatorUtils.validateEntity(kechengchengji);
  96. kechengchengjiService. updateById(kechengchengji); //全部更新
  97. return R. ok();
  98. }
  99. /**
  100. * 删除
  101. */
  102. @RequestMapping( "/delete")
  103. public R delete( @RequestBody Long[] ids){
  104. kechengchengjiService. deleteBatchIds( Arrays. asList(ids));
  105. return R. ok();
  106. }
  107. /**
  108. * 提醒接口
  109. */
  110. @RequestMapping( "/remind/{columnName}/{type}")
  111. public R remindCount( @PathVariable("columnName") String columnName, HttpServletRequest request,
  112. @PathVariable( "type") String type, @RequestParam Map< String, Object> map) {
  113. map. put( "column", columnName);
  114. map. put( "type", type);
  115. if( type. equals( "2")) {
  116. SimpleDateFormat sdf = new SimpleDateFormat( "yyyy-MM-dd");
  117. Calendar c = Calendar. getInstance();
  118. Date remindStartDate = null;
  119. Date remindEndDate = null;
  120. if(map. get( "remindstart")!= null) {
  121. Integer remindStart = Integer. parseInt(map. get( "remindstart"). toString());
  122. c. setTime( new Date());
  123. c. add( Calendar. DAY_OF_MONTH,remindStart);
  124. remindStartDate = c. getTime();
  125. map. put( "remindstart", sdf. format(remindStartDate));
  126. }
  127. if(map. get( "remindend")!= null) {
  128. Integer remindEnd = Integer. parseInt(map. get( "remindend"). toString());
  129. c. setTime( new Date());
  130. c. add( Calendar. DAY_OF_MONTH,remindEnd);
  131. remindEndDate = c. getTime();
  132. map. put( "remindend", sdf. format(remindEndDate));
  133. }
  134. }
  135. Wrapper< KechengchengjiEntity> wrapper = new EntityWrapper< KechengchengjiEntity>();
  136. if(map. get( "remindstart")!= null) {
  137. wrapper. ge(columnName, map. get( "remindstart"));
  138. }
  139. if(map. get( "remindend")!= null) {
  140. wrapper. le(columnName, map. get( "remindend"));
  141. }
  142. String tableName = request. getSession(). getAttribute( "tableName"). toString();
  143. if(tableName. equals( "jiaoshi")) {
  144. wrapper. eq( "jiaoshizhanghao", ( String)request. getSession(). getAttribute( "username"));
  145. }
  146. if(tableName. equals( "xuesheng")) {
  147. wrapper. eq( "xuehao", ( String)request. getSession(). getAttribute( "username"));
  148. }
  149. int count = kechengchengjiService. selectCount(wrapper);
  150. return R. ok(). put( "count", count);
  151. }
  152. }

转载:https://blog.csdn.net/m0_49113107/article/details/128741227
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场