spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。
源码地址:我的GitHub地址
作者:泥瓦匠BYSocket
QQ 群
编程之美① 365234583 立即加入
编程之美② 290714704 立即加入
springboot 版本 1.5.1.RELEASE
- springboot-helloworld
入门 HelloWorld 案例,Quick Start - 《Spring Boot 之 HelloWorld 详解》
- springboot-mybatis
《Springboot 整合 Mybatis 的完整 Web 案例》 - springboot-restful-json
Springboot 实现 Restful 服务,基于 HTTP / JSON 传输
在 MySQL 中,创建数据库 springbootdb:
CREATE DATABASE springbootdb;
创建表 city 城市 (因为我喜欢徒步)
DROP TABLE IF EXISTS `city`;
CREATE TABLE `city` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '城市编号',
`province_id` int(10) unsigned NOT 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;
插入基础数据
INSERT city VALUES (1 ,1,'温岭市','BYSocket 的家在温岭。');
首先 check 基本环境配置完成,创建好数据库和表。
配置文件地址:springboot-mybatis/src/main/resources/application.properties 修改相应的数据源配置,比如账号、密码等
在项目根目录 springboot-learning-example
,运行 maven 指令:
mvn clean install
右键运行工程包中 org.spring.springboot.Application
Spring Boot 应用启动类的 main 函数,然后在浏览器访问:
http://localhost:8080/api/city?cityName=温岭市
可以看到返回的 JSON 结果:
{
"id": 1,
"provinceId": 1,
"cityName": "温岭市",
"description": "我的家在温岭。"
}