美文网首页
springboot学习总结

springboot学习总结

作者: 轻舟泛江 | 来源:发表于2017-04-17 15:42 被阅读0次

部署说明

1、建表

DROP TABLE IF EXISTS`city`;

CREATE TABLE `city` (

`id`int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '城市编号',

`province_id`int(10) unsignedNOT NULL COMMENT '省份编号',

`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、插入数据

INSERT city VALUES (1 ,1,'温岭市','BYSocket 的家在温岭。');

3、运行

mvnspring-boot:run

4、查看结果

http://127.0.0.1:8080/hello(模板测试)

http://127.0.0.1:8080/api/city(rest整合)

5、实现功能备注

restfull+thymeleaf+mybatis

项目《springboot-mybatis-security》实现了security

参考资料

该项目原型参考资料

http://www.bysocket.com/?p=1610

如何建立多项目依赖(重要)

http://www.2cto.com/kf/201609/551186.html

如何修改8080端口

参考application.properties

awesome字体

http://www.fontawesome.com.cn/

jar如何以后台方式运行

http://blog.csdn.net/baochanghong/article/details/54286399

Thymeleaf使用基础

http://blog.csdn.net/quuqu/article/details/52511933

CentOS安装nexus(Maven仓库管理器)

http://blog.csdn.net/typa01_kk/article/details/49228873

相关文章

网友评论

      本文标题:springboot学习总结

      本文链接:https://www.haomeiwen.com/subject/bcrsnttx.html