
Springboot
Zsigner
这个作者很懒,什么都没留下…
展开
-
springboot yml文件配置Map List数据
application.yml 配置文件值注入配置文件person: lastName: hello age: 18 boss: false birth: 2017/12/12 maps: {k1: v1,k2: 12} lists: - lisi - zhaoliu dog: name: 小狗...转载 2019-12-06 16:01:28 · 7833 阅读 · 0 评论 -
Springboot 接口允许跨域访问
解决:在@RestController下添加注解 @CrossOrigin即可@RestController@CrossOrigin // 允许跨域访问public class ProductController{}原创 2019-03-15 10:35:19 · 2608 阅读 · 0 评论 -
springboot之启动原理解析及源码阅读
转载:https://www.cnblogs.com/shamo89/p/8184960.html前言SpringBoot为我们做的自动配置,确实方便快捷,但是对于新手来说,如果不大懂SpringBoot内部启动原理,以后难免会吃亏。所以这次博主就跟你们一起一步步揭开SpringBoot的神秘面纱,让它不在神秘。正文我们开发任何一个Spring Boot项目,都会用到如下...转载 2019-03-15 18:22:18 · 98 阅读 · 0 评论 -
Spring Boot 如何测试打包部署
转载:https://www.cnblogs.com/ityouknow/p/6834287.html?utm_source=itdadao&utm_medium=referral开发阶段单元测试在开发阶段的时候最重要的是单元测试了, Spring Boot 对单元测试的支持已经很完善了。1、在 pom 包中添加spring-boot-starter-test包引用...转载 2019-04-10 16:48:56 · 120 阅读 · 0 评论 -
Spring Boot使用单元测试
转自:http://tengj.top/2017/12/28/springboot12/前言这次来介绍下Spring Boot中对单元测试的整合使用,本篇会通过以下4点来介绍,基本满足日常需求Service层单元测试 Controller层单元测试 新断言assertThat使用 单元测试的回滚正文Spring Boot中引入单元测试很简单,依赖如下:<depe...转载 2019-05-27 10:30:49 · 151 阅读 · 0 评论 -
玩转SpringBoot之定时任务详解
转自:https://www.cnblogs.com/mmzs/p/10161936.html阅读目录:序言 一、静态:基于注解 二、动态:基于接口 三、多线程定时任务阅读正文:回到顶部序言使用SpringBoot创建定时任务非常简单,目前主要有以下三种创建方式:一、基于注解(@Scheduled) 二、基于接口(SchedulingConfigurer) ...转载 2019-06-13 12:28:13 · 150 阅读 · 0 评论 -
Springboot — 用更优雅的方式发HTTP请求(RestTemplate详解)
转自:https://www.cnblogs.com/javazhiyin/p/9851775.htmlRestTemplate是spring的一个rest客户端,在spring-web这个包下,spring boot的依赖如下 <dependency> <groupId>org.springframework.boot<...转载 2019-06-27 10:20:08 · 1180 阅读 · 0 评论 -
Spring Boot之 Actuator监控(各个接口介绍)
转:https://blog.youkuaiyun.com/jy02268879/article/details/84134634API:https://docs.spring.io/spring-boot/docs/2.0.1.RELEASE/actuator-api/html/#heapdumpSpring BootActuator 提供了 一些接口,向外部提供本应用程序的监控信息。接口分为...转载 2019-07-15 12:29:55 · 2410 阅读 · 0 评论 -
SpringBoot(审计) 统计接口调用次数及成功率
转载:https://www.cnblogs.com/yuwenhui/p/9809671.htmlSpringBoot(审计) 统计接口调用次数及成功率介绍: 很多时候会需要提供一些统计记录的,比如某个服务一个月的被调用量、接口的调用次数、成功调用次数等等。优点: 使用AOP+Hendler对业务逻辑代码无侵入,完全解耦。通过spring boot自带的健康检查接口(/h...转载 2019-07-15 14:20:29 · 12029 阅读 · 3 评论