SpringBoot+idea+maven
施小墨
我们总会因为满足于现状而停止不前。
展开
-
springboot+idea+maven项目搭建
文章目录1、idea的安装2、maven的安装3、项目创建4、springboot的依赖包 1、idea的安装 2、maven的安装 3、项目创建 4、springboot的依赖包原创 2019-04-19 14:29:57 · 900 阅读 · 0 评论 -
SpringBoot在Idea中使用Maven管理依赖包的学习
本文章只用来自己的笔记,具体操作详细看慕课网的视频:(慕课网SpringBoot构建电商基础秒杀项目) 根据视频进行学习总结: 文章目录一、环境搭建(第一步)二、SpringBoot依赖包1、在pom.xml添加SpringBoot的依赖包2、APP修改三、搭建Mybatis环境1、在pom.xml中,添加mybatis的依赖包2、在数据库中建立两张表3、mybatis-generator.xml...原创 2019-04-19 15:55:58 · 3472 阅读 · 1 评论 -
SpringBoot的注解学习总结
1、APP入口注解 SpringBootApplication:入口类Application的启动注解,是一个复合注解,包括@ComponentScan,和@SpringBootConfiguration,@EnableAutoConfiguration。链接:https://www.cnblogs.com/duanxz/p/3756364.html RestController:相当于@Re...原创 2019-04-19 16:34:10 · 271 阅读 · 0 评论