# springboot **Repository Path**: karlin999/springboot ## Basic Information - **Project Name**: springboot - **Description**: Springboot初学者可以利用! http://how2j.cn/k/springboot/springboot-eclipse/1640.html 通过以上地址的内容进行构建。 Springboot 项目构建; 基础知识; 数据连接; 打包部署; 增删改查数据; restful示例; json示例; - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-04-18 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # springboot Springboot初学者可以利用! http://how2j.cn/k/springboot/springboot-eclipse/1640.html 通过以上地址的内容进行构建。 数据库 1.创建数据库,名称是 how2java create database how2java; 2. 创建个分类表,字段很简单,就id和name use how2java; CREATE TABLE category_ ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(30), PRIMARY KEY (id) ) DEFAULT CHARSET=UTF8; 3.插入3条数据 insert into category_ values(null,'category 1'); insert into category_ values(null,'category 2'); insert into category_ values(null,'category 3');