基于ssm框架实现的房屋租赁管理系统
分享一个自己在学校学习开发的一个系统程序,麻雀虽小,五脏俱全,本系统是基于ssm(Spring+SpringMVC+MyBatis)开发的房屋管理系统
系统分管理员和租客两大用户类型,不同类型具有不同功能。
功能介绍 房源信息模块: 房源信息展示、房源信息更新、房源信息增加、房源信息删除
账户管理模块: 账户登录、账户绑定、账户管理
租金结算模块: 每月租金信息、租金交付功能、月租金收入总额统计
房屋租赁合同管理模块: 房屋租赁合同录入、房屋租赁合同展示、房屋租赁价格修改、房屋租赁合同终止
报障模块: 租客报账、管理员报障审核、租客报障统计
日程模块:查看日程、添加日程
更多的功能请看下面项目运行截图
运行环境:
项目开发语言:Java语言
项目开发工具:eclipse等
项目开发技术:ssm
服务器软件:tomcat7.0或者以上
数据库类型:MySQL数据库为系统的数据库
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!-- 扫描带Controller注解的类 --> <context:component-scan base-package="controller" /> <!-- 加载注解驱动 --> <mvc:annotation-driven/> <!-- 配置视图解析器 作用:在controller中指定页面路径的时候就不用写页面的完整路径名称了,可以直接写页面去掉扩展名的名称 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 真正的页面路径 = 前缀 + 去掉后缀名的页面名称 + 后缀 --> <!-- 前缀 --> <property name="prefix" value="/WEB-INF/jsp/"></property> <!-- 后缀 --> <property name="suffix" value=".jsp"></property> </bean> <!-- 配置自定义转换器 注意: 一定要将自定义的转换器配置到注解驱动上 --> <!-- 文件上传 --> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <!-- 设置上传文件的最大尺寸为5MB --> <property name="maxUploadSize"> <value>5242880</value> </property> </bean> </beans> @Controllerpublic class UserController { @Autowired private UserService userService; @RequestMapping("/login") public String userList() throws Exception{ return "login"; } @RequestMapping("/logincheck") public String login(User user,Model model,HttpSession httpSession) throws Exception{ User user1=userService.login(user); if(user1!=null){ httpSession.setAttribute("user", user1); if(user1.getType().equals("zuke")){ return "zuke/main"; } else{ return "admin/main1"; } }else{ String error="error"; model.addAttribute("error", error); return "login"; } } @RequestMapping("/toindex") public String toindex(Model model) throws Exception{ return "admin/index"; } } 源码地址:http://www.myzshare.cn/resource_detail?id=123&res_name=%E5%9F%BA%E4%BA%8Essm%E5%BC%80%E5%8F%91%E7%9A%84%E6%88%BF%E5%B1%8B%E7%A7%9F%E8%B5%81%E7%B3%BB%E7%BB%9F
赞 (0)