spring
文章平均质量分 66
AbnerSun2016
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Spring Cloud Feign
介绍 Spring Cloud Feign 基于Netflix Feign 实现,整合了Spring Cloud Ribbon 和Spring Cloud Hystrix。 简单使用 #pom.xml <dependencies> <dependency> <groupId>org.springframework.boot</grou...原创 2018-11-28 16:11:48 · 148 阅读 · 0 评论 -
关于本地测试需要启动多个api的痛点解决
痛点来源 本人参与的项目采用按业务分离的模式架构开发,每次测试时都需要在Visual Studio Code 中开多个powershell窗口启动多个服务,所以感觉比较痛苦,因为在windows上开发, 然后就想到了bat。 实现细节 bat 启动文件 #cmd-api-start.bat @echo off set node=%NODE_HOME%\\node.exe :从ser...原创 2018-12-25 11:20:30 · 300 阅读 · 0 评论 -
XmlBeanDefinitionReader 处理过程
1.入口 /** * Load bean definitions from the specified XML file. * @param resource the resource descriptor for the XML file * @return the number of bean definitions found * @throws BeanDefinit...原创 2019-04-26 11:14:43 · 255 阅读 · 0 评论 -
Spring 自定义标签解析过程
1.入口DefaultBeanDefinitionDocumentReader public BeanDefinition parseCustomElement(Element ele, @Nullable BeanDefinition containingBd) { //获取对应的命名空间 String namespaceUri = getNamespaceURI(ele...原创 2019-04-26 14:20:39 · 275 阅读 · 0 评论 -
RestTemplate 实践
HttpClientConfig package com.config; import org.apache.http.HeaderElement; import org.apache.http.HeaderElementIterator; import org.apache.http.HttpResponse; import org.apache.http.client.config.Re...原创 2019-09-10 18:22:42 · 278 阅读 · 0 评论
分享