部署說明
1、建表
DROP TABLE IF EXISTS`city`;
CREATE TABLE `city` (
`id`int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '城市編號(hào)',
`province_id`int(10) unsignedNOT NULL COMMENT '省份編號(hào)',
`city_name`varchar(25) DEFAULT NULL COMMENT '城市名稱',
`description`varchar(25) DEFAULT NULL COMMENT '描述',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
2布疼、插入數(shù)據(jù)
INSERT city VALUES (1 ,1,'溫嶺市','BYSocket 的家在溫嶺。');
3爷怀、運(yùn)行
mvnspring-boot:run
4、查看結(jié)果
http://127.0.0.1:8080/hello(模板測(cè)試)
http://127.0.0.1:8080/api/city(rest整合)
5夹攒、實(shí)現(xiàn)功能備注
restfull+thymeleaf+mybatis
項(xiàng)目《springboot-mybatis-security》實(shí)現(xiàn)了security
參考資料
該項(xiàng)目原型參考資料
http://www.bysocket.com/?p=1610
如何建立多項(xiàng)目依賴(重要)
http://www.2cto.com/kf/201609/551186.html
如何修改8080端口
參考application.properties
awesome字體
http://www.fontawesome.com.cn/
jar如何以后臺(tái)方式運(yùn)行
http://blog.csdn.net/baochanghong/article/details/54286399
Thymeleaf使用基礎(chǔ)
http://blog.csdn.net/quuqu/article/details/52511933
CentOS安裝nexus(Maven倉庫管理器)
http://blog.csdn.net/typa01_kk/article/details/49228873