
springboot
nnsword
赋于程序生命与智能,让其自由生长。
展开
-
SpringBoot集成ShedLock实现分布式锁
介绍参考自技术雷达有一种很常见的需求,是在分布式处理器集群上执行一次定时任务,且只执行一次。例如处理一批数据,发送一条通知,或者执行某个常规的清理操作,都属于这类情况。但是谁都知道这个问题很难,一组处理器如何通过有延迟而且不稳定的网络来实现稳定的协作?这就需要在集群中存在某种锁定机制,来协调这些操作。幸好有很多分布式存储可以实现这种锁定,ZooKeeper 和 Consul 等系统,以及 DynamoDB 或 Couchbase 等数据库都有必要的底层机制来管理集群内部的一致性。ShedLock 是一原创 2022-04-07 17:34:21 · 1122 阅读 · 0 评论 -
spring cloud Feign oauth2令牌传递
创建feign的配置类/** * Feign配置 **/@Configurationpublic class FeignConfiguration { /** * 日志级别 * @return */ @Bean Logger.Level feignLoggerLevel() { return Logger.Level.FULL; } /** * 创建Feign请求拦截器,在发送请求前设置认证的t原创 2020-07-17 17:36:15 · 959 阅读 · 0 评论 -
spring cloud2.0学习笔记-断路器超时与Ribbon超时关系
背景springCloud:Finchley.RELEASE官方建议当Ribbon客户端和hystrix同时使用时,您需要确保您的hystrix超时时间配置比Ribbon超时时间更长,包括可能进行的重试。例如,如果您的Ribbon连接超时为1秒,而Ribbon客户端可能会重试该请求3次,则hystrix超时应该略大于3秒。...原创 2018-07-19 16:52:55 · 1496 阅读 · 0 评论 -
spring cloud2.0学习笔记-Feign
背景springCloud:Finchley.RELEASE简介Feign是SpringCloud体系中声明式Rest客户端,通过简单配置、创建接口和注解即可实现Restful服务的调用。而且开始支持SpringMvc了。简单应用 依赖:org.springframework.cloud:spring-cloud-starter-openfeign入口加@Enabl...原创 2018-07-20 10:13:50 · 351 阅读 · 0 评论 -
Spring IO Platform项目志在解决依赖包版本问题
Spring IO Platform官方定义为什么使用spring io platform其主要特性快速上手目前发布版本有两个在maven项目中添加使用使用实例官方定义原文Spring IO is a cohesive, versioned platform for building modern applications. It is a modular, enterprise-gr...原创 2018-11-27 10:32:43 · 1553 阅读 · 0 评论 -
通过Jpa操作mongodb报expected at least 1 bean which qualifies as autowire错误
报错信息org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'WebGatherService': Injection of autowired dependencies failed; nested exception is org.springframework.bea...原创 2018-12-13 16:55:37 · 1125 阅读 · 0 评论 -
springcloud-Finchley学习笔记-gateway基于注册发现的默认路由配置
环境spring cloud版本:Finchley.SR2spring boot版本:2.0.6.RELEASE介绍Spring Cloud Gateway是Spring官方基于Spring 5.0,Spring Boot 2.0和Project Reactor等技术开发的网关,Spring Cloud Gateway旨在为微服务架构提供一种简单而有效的统一的API路由管理方式。Sp...原创 2018-12-07 12:02:05 · 1521 阅读 · 0 评论 -
SpringBoot支持Jsp模板
添加Maven依赖<!--jsp支持--> <!-- servlet 依赖. --> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifact...原创 2019-01-04 14:21:10 · 431 阅读 · 0 评论 -
springcloud-Finchley学习笔记-gateway路由匹配配置
路由匹配After路由匹配:匹配指定时间之后的请求spring: cloud: gateway: routes: - id: after_route uri: http://example.org predicates: - After=2017-01-20T17:42:47.789-07:00[Ameri...原创 2019-01-11 17:43:42 · 6216 阅读 · 1 评论 -
springcloud-Finchley学习笔记-gateway网关跨域配置
配置信息如下 cloud: gateway: globalcors: corsConfigurations: '[/**]': allowedOrigins: "*" allowedMethods: - GET - POSTallowed...原创 2019-01-14 09:40:15 · 5229 阅读 · 1 评论 -
springcloud-Finchley学习笔记-gateway网关自定义过滤器
创建过滤器代码:验证令牌过滤不完整版本/** * 令牌验证过滤器 * @author wuxie * @date 2019-1-14 */public class TokenValidateGatewayFilterFactory extends AbstractGatewayFilterFactory<TokenValidateGatewayFilterFactory.Conf...原创 2019-01-15 17:37:40 · 5869 阅读 · 0 评论 -
springcloud-Finchley学习笔记-springboot项目跨域配置
两个方法两者效果是一样的,spring boot 2.x和1.x的配置方法和实现接口(类)不一样。通过bean注解实现@Bean public WebMvcConfigurer shiroMethodArgConfigurer() { return new WebMvcConfigurer() { @Override ...原创 2019-02-21 15:38:31 · 373 阅读 · 0 评论 -
Spring IO Platform与spring boot版本对应关系(持续更新)
官方对spring Io platform的概述:SpringIO是一个构建现代应用程序的内聚版本平台。它是一个模块化的企业级发行版,提供一组经过管理的依赖关系,同时让开发人员完全控制只部署他们需要的部分。SpringIO是100%的开源、精益和模块化的。使用样例 &amp;lt;parent&amp;gt; &amp;lt;groupId&amp;gt;io.spring.platform&原创 2019-02-11 10:16:26 · 9071 阅读 · 4 评论 -
spring boot 提交参数绑定List下标越界,超过256,java.lang.IndexOutOfBoundsException异常
springMVC框架提交参数list时,springmvc默认只能接收到255个数据,当你前台传的数据长度大于255位的时候就会报错错误信息如下:2019-05-09 20:44:26.047 ERROR 9284 --- [nio-8090-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for se...原创 2019-05-10 10:08:51 · 6633 阅读 · 3 评论 -
spring cloud2.0学习笔记-断路器(Circuit Breaker)
介绍Netflix通过Hystrix库实现了断路器模式,在微服务架构体系中存在多层调用的,低级的服务故障可能会导致级联故障,断路器可以有效保护微服务,防止出现雪崩效应。断路器开启的条件在定义的时间窗口内,默认10s(metrics.rollingStats.timeInMilliseconds)某服务被请求次数超过阈值,默认20次(circuitBreaker.requestV...原创 2018-07-19 15:54:09 · 5470 阅读 · 0 评论 -
spring cloud2.0学习笔记-RestTemplate请求失败重试配置
说明配置负载均衡的RestTemplate,默认是不开启动请求失败后重试的。你需要通过以下配置来配置重试相关属性。配置详细说明请查看SpringCloud相应版本官方文档。spring.cloud.loadbalancer.retry.enabled=falseclient.ribbon.MaxAutoRetriesclient.ribbon.MaxAutoRetriesNextSer...原创 2018-07-19 11:24:05 · 7049 阅读 · 0 评论 -
springCloud整合Oauth2时如何设置资源服务ID
在资源服务配置中重载资源配置方法··· @Configuration @EnableResourceServer public class ResourceServerConfiguration extends ResourceServerConfigurerAdapter {@Overridepublic void configure(HttpSecurity http) thr...原创 2018-04-05 11:08:54 · 11180 阅读 · 2 评论 -
《Spring Cloud Netflix》-- 服务注册和服务发现-Eureka的服务认证和集群
一、Eureka的服务认证1、服务端添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> 2、服务端添加配置 服务认证 security.basic.enable原创 2017-06-02 09:50:13 · 409 阅读 · 0 评论 -
spring boot 配置文件(application.yml)中的属性值配置
<!-- 支持 @ConfigurationProperties 注解 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optiona原创 2017-08-08 12:29:20 · 1003 阅读 · 0 评论 -
java微服务架构中改造时,引用旧jpa实体引发的血案
背景旧项目环境:jdk1.6,spring+hibernate/jpa+Struct2/spring mvc改目标:jdk1.8 spring cloud微服务 在微服务中直接引用旧项目的实体包(entity)后,报出以错误。在网上搜索未果,爬墙出去狗狗中搜索,也没有找到原因。没办法只能自己动手丰衣足食了。报错信息2017-07-26 14:06:03.413 WARN org.hiber原创 2017-07-28 12:30:49 · 1674 阅读 · 0 评论 -
SpringBoot笔记-通过实现HandlerMethodArgumentResolver接口,给springMvc的Controller的方法注入自定义参数
实现HandlerMethodArgumentResolver接口package com.wy2.cloud.microservice.user.configuration;import com.wy2.cloud.pojo.security.User;import org.springframework.core.MethodParameter;import org.springframewo原创 2017-07-28 15:13:41 · 1183 阅读 · 0 评论 -
mycat更新时字段无法更新异常的解决方案
场景描述开发环境:spring boot1.5.3.RELEASE +JPA数据库环境:mycat 1.6+mysql5.6报错信息:对分片表进行更新操作,提示XX字段无法更新报错原因mycat中分片表中的分片字段是不能更新的,而Jpa(底层hibernate)默认是更新全字段。所以会产生冲突,报错。解决方案对实体进行注解@Column(updatable=false) p原创 2017-09-15 09:39:30 · 2768 阅读 · 0 评论 -
spring cloud学习笔记-feign的基础配置及修改日志输出类型
源码地址git https://gitee.com/nnsword/wy2-cloud/tree/master/wy2-springcloud-sample1xFeign配置#Hystrix支持,如果为true,hystrix库必须在classpath中feign.hystrix.enabled=false#请求和响应GZIP压缩支持feign.compression....原创 2017-09-19 09:16:46 · 2598 阅读 · 0 评论 -
springboot动态数据源实现
使用动态数据源的初衷,是能在应用层做到读写分离,即在程序代码中控制不同的查询方法去连接不同的库。除了这种方法以外,数据库中间件也是个不错的选择,它的优点是数据库集群对应用来说只暴露为单库,不需要切换数据源的代码逻辑。定义数据源线程内容器,用户定义当前线程用的数据源public class DataSourceContextHolder { public static final Logger原创 2017-09-22 11:00:26 · 512 阅读 · 1 评论 -
spring cloud学习笔记-1应用上下文服务
1.1Bootstrap应用上下文件bootstrap.yml是应用程序的父级配置,加载优先级高于application.yml和application-?.yml配置,不支持profile配置。bootstrap配置级别较高,不能被本地配置重写。建议只将很少变化的配置内容配置到它中。spring: application: name: foo cloud: ...原创 2018-03-07 12:17:26 · 568 阅读 · 0 评论 -
springboot2.0学习笔记 自定义JSON序列化程序和反序列化器
如果使用jackson序列化和反序列化json数据,则可能需要编写 自己JsonSerializer和JsonDeserializer的类。Spring提供了一个替代方案。@JsonComponent创建注释 直接注册spring bean容易。 您可以使用@JsonComponent直接注释JsonSerializer或JsonDeserializer实现。您还可以使用它在包含 序列化程序/d...原创 2018-03-02 14:25:50 · 8541 阅读 · 0 评论 -
spring cloud学习笔记 Feign支持接口继承方式快速生成客户端
源码地址:https://gitee.com/nnsword/wy2-cloud/tree/master//用户资源接口public interface UserService { @RequestMapping(method = RequestMethod.GET, value ="/users/{id}") User getUser(@PathVariable("id"...原创 2018-03-12 09:49:53 · 4938 阅读 · 2 评论 -
spring cloud学习笔记 Feign请求响应启用压缩
源码地址:https://gitee.com/nnsword/wy2-cloud/tree/master开启压缩可以有效节约网络资源,但是会增加CPU压力,建议把最小压缩的文档大小适度调大一点//开启压缩feign.compression.request.enabled=truefeign.compression.response.enabled=true//配置压缩文档类...原创 2018-03-12 09:57:48 · 6448 阅读 · 0 评论 -
spring cloud学习笔记 Spring Boot2.0中Actuator变化
环境spring boot 2.0.0.RELEASE源码地址:https://gitee.com/nnsword/wy2-cloud/tree/master/wy2-springcloud-sample依赖引入<dependency> <groupId>org.springframework.boot</groupId> <...原创 2018-03-14 11:17:44 · 6174 阅读 · 4 评论 -
spring cloud整合spring security oauth2时允许Get请求获得令牌
实现AuthorizationServerConfigurerAdapter,进行认证配置开启允许客户端表单认证配置TokenEndpoint(令牌端点)允许的请求方法源码片段@Configuration@EnableAuthorizationServerprotected class AuthorizationServerConfiguration extends Au...原创 2018-04-10 15:11:54 · 1842 阅读 · 0 评论 -
springboot 使用Servlet,Filter,Listener的方法
分别通过构建下面bean来,使用filter,servlet,servletlistenerFilterRegistrationBean 、 ServletRegistrationBean 、 ServletListenerRegistrationBean这三个类直接上代码:@Bean public FilterRegistrationBean filterRegistrationBea原创 2017-04-24 11:39:15 · 458 阅读 · 5 评论