1、经过组织结构分析和业务流程分析后,具体分析了他们的功能需求,详细如下:
物业管理员:管理员作为系统的管理者,拥有所有权限,权限设置也只有管理员拥有;物业信息管理、基本资料管理等
用户:投诉,报修,缴费和预定车位等。
住户登录系统后,可以打开住户管理主界面,主要的功能包括住户资料,住户报修管理,缴费管理,住户停车车位管理以及留言管理
配置文件hibernate.cfg.xml
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.url">
jdbc:mysql://localhost:3306/hibernate
</property>
<property name="hibernate.connection.driver_class">
com.mysql.jdbc.Driver
</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password"></property>
<property name="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.current_session_context_class">
thread
</property>
<property name="connection.useUnicode">true</property>
<property name="connection.characterEncoding">UTF-8</property>
点击下载完整源码和文档: