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, 中文介绍.
The JavaEE web project uses following frameworks:
- Spring 4 MVC (Version: 4.1.1.RELEASE).
- Freemarker template engine (Version: 2.3.20).
- Bootstrap (Version: 3.3.2).
- jQuery (Version: 2.1.3).
- Font Awesome (Version: 4.3.0).
- Mybatis as database connection layer (Version: 3.2.8).
MySQL
Java 6+
Please first modify file classpath:config/spring/appcontext-mybatis.xml
depend on you own database parameters.
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';
Please visit demo http://appkit.popkit.org
2015-03-15
2015-10-15