springBoot
文章平均质量分 92
很有想法的小伙子
show me the code
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SpringCloud 微服务监控方案sentinel + spring boot admin
SpringCloud 微服务监控方案sentinel + spring boot admin前言:项目基于springcloud框架,服务注册中心使用的是Eurekaspring boot admin 完整构建过程只需要搭建一个spring boot admin客户端所需依赖spring-cloud-starter-netflix-eureka-client将spring boot admin客户端注册到Eurekaspring boot admin 底层还是调用的actuator的接口原创 2021-09-09 16:24:28 · 5862 阅读 · 0 评论 -
使用maven快速搭建SpringBoot多模块web项目
maven快速搭建SpringBoot多模块web项目 最近开发用到了SpringBoot框架,在这里记录一下搭建项目的过程,应该是比较全的。前提是你的maven配置正确创建父项目File–>new–>maven project点击Next进入下一步这里讲一下上图中的groupid和artifactId 被统称为“坐标”是为了保证项目唯一性而提出的,如果你要把你项目...原创 2018-12-03 18:34:37 · 5866 阅读 · 2 评论 -
SpringBoot+thymeleaf
springboot项目默认是不允许直接访问template下的文件的,想要访问template下的页面,我们需要配置视图解析器,要设置好视图去展示页面,可以用一个模板来接受后台返回的数据如thymeleaf、freemarker、jsp,SpringBoot官方是不推荐使用jsp的,推荐使用thymeleaf作为模板语言。解决在spring中使用thymeleaf的时候,会对html进行严格...原创 2019-07-30 15:57:27 · 632 阅读 · 0 评论 -
Springboot+Restful+Swagger2
REST是REpresentational State Transfer的缩写(一般中文翻译为表述性状态转移),REST 是一种体系结构,而 HTTP 是一种包含了 REST 架构属性的协议,为了便于理解,我们把它的首字母拆分成不同的几个部分:表述性(REpresentational): REST 资源实际上可以用各种形式来进行表述,包括 XML、JSON 甚至 HTML——最适合资源使用者...原创 2019-07-30 17:04:25 · 461 阅读 · 0 评论
分享