SpringMVC/Boot/Cloud等Spring家族
SpringMVC/SpringBoot/SpringCloud等Spring家族
keep12moving
虚心学习,慢慢进步
展开
-
浅析Spring中AOP的实现原理——动态代理
浅析Spring中AOP的实现原理——动态代理 - 特务依昂 - 博客园转载 2022-05-09 22:47:08 · 115 阅读 · 0 评论 -
Spring boot中配置事务管理
Spring boot中配置事务管理_Satsuki.Chan的博客-CSDN博客_springboot配置事务管理器转载 2022-05-09 22:28:12 · 421 阅读 · 0 评论 -
Caused by: org.yaml.snakeyaml.constructor.DuplicateKeyException: while constructing a mapping
是consul配置里重复配置key了原创 2021-12-18 11:59:11 · 2817 阅读 · 0 评论 -
配置Feign后在启动的时候报错PathVariable annotation was empty on param 1.
配置Feign后在启动的时候报错PathVariable annotation was empty on param 1._祈丨凮的博客-CSDN博客转载 2021-11-03 15:50:09 · 237 阅读 · 0 评论 -
RequestParam.value() was empty on parameter 0
https://blog.csdn.net/jslong66/article/details/112261052转载 2021-08-23 15:49:00 · 450 阅读 · 0 评论 -
Spring Boot自动配置原理
https://morty.blog.csdn.net/article/details/83820511?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-11.control&dist_request_id=1332037.8460.16191445185531179&depth_1-utm_source=distribute.pc转载 2021-04-23 10:24:01 · 83 阅读 · 0 评论 -
Springboot项目里@NotBlank/NotNull/NotEmpty/@Valid校验数据非空无效
https://blog.csdn.net/qq_35992900/article/details/80068680转载 2021-03-16 21:42:51 · 1171 阅读 · 0 评论 -
Consul 注册中心介绍以及与Eureka的区别
https://blog.csdn.net/qwe86314/article/details/95094751?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-11.control&dist_request_id=1328603.71730.16152868267843957&depth_1-utm_source=distribute.pc_relevant.none-task-转载 2021-03-09 18:50:29 · 152 阅读 · 0 评论 -
@Resource与@Autowired用法区别
https://blog.csdn.net/magi1201/article/details/82590106?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.control转载 2021-01-24 16:31:15 · 104 阅读 · 0 评论 -
Springboot 工具类@Value取不到值
工具类里@Value取不到值,如下图原因是new的对象改为EncryptIdCardUtil类方法改为非静态方法,ConnectService类由new改为@Autowired注入RiskService里也由直接调用EncryptIdCardUtil里的静态方法,改为EncryptIdCardUtil类@Autowired注入就可以了总结:1.@Value不能静态成员上使用;2.使用@Value读取属性值的类对象需要交给spring容器管理.原创 2020-11-04 18:00:10 · 2868 阅读 · 0 评论 -
RPC和RESTful
https://www.toutiao.com/i6752793853293494798转载 2020-03-16 18:07:38 · 122 阅读 · 0 评论 -
Nacos微服务注册地址为内网IP的解决办法
https://blog.csdn.net/zimou5581/article/details/91041239转载 2020-03-13 10:10:39 · 6173 阅读 · 1 评论 -
SpringCloud项目中接入Nacos作为注册中心
https://blog.csdn.net/qq_33619378/article/details/95212754转载 2020-01-21 10:23:28 · 222 阅读 · 0 评论 -
滴滴面试题:springboot之启动原理解析及源码阅读
https://www.cnblogs.com/shamo89/p/8184960.html转载 2019-12-05 21:58:43 · 183 阅读 · 0 评论 -
面试题:spring-boot-starter原理及实现方法
https://blog.csdn.net/Mr_OOO/article/details/89477948自定义starter:https://blog.csdn.net/vbirdbest/article/details/79863883转载 2019-11-15 19:23:32 · 441 阅读 · 0 评论 -
SpringBoot注解大全
一、注解(annotations)列表@SpringBootApplication:包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。其中@ComponentScan让spring Boot扫描到Configuration类并把它加入到程序上下文。@Configuration 等同于spring的XML配置文件;使用Ja...转载 2019-10-20 18:14:16 · 96 阅读 · 0 评论 -
深入SpringBoot注解原理及使用
首先,先看SpringBoot的主配置类:@SpringBootApplicationpublic class StartEurekaApplication{ public static void main(String[] args) { SpringApplication.run(StartEurekaApplication.class, ar...转载 2019-10-20 15:28:50 · 173 阅读 · 0 评论 -
学习 Spring Boot 知识看这一篇就够了
从2016年因为工作原因开始研究 Spring Boot ,先后写了很多关于 Spring Boot 的文章,发表在技术社区、我的博客和我的公号内。粗略的统计了一下总共的文章加起来大概有六十多篇了,其中一部分是在技术社区做的系列课程。我在写文章的时候将文章中的示例提取出来,作为开源代码分享了出来让大家以更方便的方式去学习(https://github.com/ityouknow/spring-...转载 2019-10-20 15:48:21 · 130 阅读 · 0 评论 -
springboot打印sql语句
1. Maven依赖配置pom.xml中去掉Logback, 引入log4j2<!-- 节选 --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactI...原创 2019-05-19 15:52:02 · 1595 阅读 · 0 评论 -
利用 Java 实现接口 POST 请求测试
下面这个postDemo类是java的post请求去调用http://localhost:8080/callBack的接口public class postDemo { private static HttpClient httpClient = new DefaultHttpClient(); private static HttpPost httppo...原创 2019-04-25 12:16:47 · 2060 阅读 · 0 评论 -
SpringBoot使用@Scheduled创建定时任务
基于SpringBoot架构完成注解@Scheduled的定时任务配置。文章开头我说到了SpringBoot为我们内置了@Scheduled定时任务,下面我们就来配置下这个注解,找到入口程序SecurityApplication添加注解@EnableScheduling,如下图所示:可以看到上图内我们添加注解后SpringBoot就已经认定了我们要使用定时任务来完成一些业务逻辑了,内部...原创 2018-12-11 13:43:49 · 247 阅读 · 0 评论 -
SpringBoot通过@Value注解读取application.yml为null
application.yml配置如下:获取方法为:但获取结果为:null。原因是变量为static类型,属于类变量,在赋值前就已加载,所以无法赋值。改为非static即可,如下:...原创 2018-12-17 18:02:22 · 2675 阅读 · 4 评论