首页 > 代码库 > 【SSH + BootStrap】实现的无线点餐系统

【SSH + BootStrap】实现的无线点餐系统

大二那会学习java学web的时候折腾了一个简单的无线点餐系统,cms形式的一个简单网站。
现在马上大四了,一年多没搞这方面发现东西忘得还真快,整理一下,顺便开源了。生气

1.简介

后端基于spring, struts1和hibernate,前台用bootstrap实现。

实现的功能也比较少,基本的crud操作,文件上传,ajax异步刷新等。

关于bootstrap的学习,请移步 Bootstrap中文网

2.代码结构和类图结构



3 applicationContext.xml配置文件

<?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:context="http://www.springframework.org/schema/context"
		xmlns:tx="http://www.springframework.org/schema/tx"
		xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
				http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
				http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<!-- 启用注解扫描 -->
<context:annotation-config/>

<!-- 配置数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
		<property name="driverClassName" value=http://www.mamicode.com/"com.mysql.jdbc.Driver" />>

4 源码下载

点这里下载

使用的话需要先创建数据库wireless,将sql文件导入数据库,然后修改上面的application.xml中数据库的配置参数

5 效果展示