Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.53 KB

README_EN.md

File metadata and controls

46 lines (37 loc) · 1.53 KB

appkit-web

Build Status

Introduction

The appkit-web is an spring mvc arch project, which use tha latest spring (4.1.1.RELEASE) technology.
And use annotation as the authority policy when post submit. Chinese Intro, 中文介绍.

Framework

The JavaEE web project uses following frameworks:

  1. Spring 4 MVC (Version: 4.1.1.RELEASE).
  2. Freemarker template engine (Version: 2.3.20).
  3. Bootstrap (Version: 3.3.2).
  4. jQuery (Version: 2.1.3).
  5. Font Awesome (Version: 4.3.0).
  6. Mybatis as database connection layer (Version: 3.2.8).

Database

MySQL

Java

Java 6+

Install

Please first modify file classpath:config/spring/appcontext-mybatis.xml
depend on you own database parameters.

Deploy

Create a demo table in your database as follows

CREATE TABLE `appkit_demo` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
  `name` varchar(11) DEFAULT NULL COMMENT 'user name',
  `address` varchar(30) DEFAULT NULL COMMENT 'user adress',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='appkit-web demo database';

Web demo

Please visit demo http://appkit.popkit.org

Create date

2015-03-15

Update

2015-10-15