springboot学习视频记录:
笔记:
a:Springboot maven常见依赖、配置文件笔记-CSDN博客
b:Springboot环境搭建详解-CSDN博客
day01
6:springboot的parent和starter依赖- a
7:启动类的位置配置- b
8:springboot内置的tomcat服务器以及修改 -a
9:springboot的三种配置文件 yaml properties yml
10:springboot jar包启动-b
day02
一、环境搭建
二、启动类配置
springmvc中:配置xml文件
<context:component-scan basePackage="com.xzit"></context:component-scan>
@SpringBootApplication作用:把这个位置设置为基础包,检测下面的controller,service等注解。
三、jar包启动
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <excludes> <exclude> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </exclude> </excludes> </configuration> </plugin> </plugins> </build>
springboot initial 创建项目已经加入了plugin直接右边打包处理。
运行:java -jar 当前位置的相对地址