关于springboot学习的总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于springboot学习的总结相关的知识,希望对你有一定的参考价值。

  这几天springboot相关的知识,下面就对自己这几天的学习情况做下总结。

  springboot应用的结构

技术分享

 

 

技术分享

 

src

--main:

----java:存放源代码

----resources:

------templates:存放html文件,css文件

------application.properties  存放配置信息  (放在resources文件夹下)

 

--test

测试文件及信息。

 

target:

--classes:

----编译之后的Java文件

----templates:存放src中相应的资源文件。

 

 

 

 

pom.xml  (project object model)  保存在项目的根目录下

--groupId,artifactId,version   可以唯一确定项目的唯一坐标。

--parent --

--properties

--dependencies

----dependency

 

<!--  监控-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
依赖中添加上面的依赖,输入localhost:port可以查看监控信息

 

--build

----plugins

 

 

 

 

postman 的使用

redis

zookeeper

 







以上是关于关于springboot学习的总结的主要内容,如果未能解决你的问题,请参考以下文章

全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段

Python学习总结

线程学习知识点总结

SpringBoot整合Mybatis之进门篇

几个关于js数组方法reduce的经典片段

spring boot学习总结-- 关于@SpringBootApplication的一些基础知识点