E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
springboot2.X
SpringBoot2.x
系列教程59--SpringBoot整合消息队列之JMS简介
一.JMS协议1.JMS协议概述TheJavaMessageService(JMS)APIisamessagingstandardthatallowsapplicationcomponentsbasedontheJavaPlatformEnterpriseEdition(JavaEE)tocreate,send,receive,andreadmessages.Itenablesdistribute
qfchenjunbo
·
2020-08-15 02:22
SpringBoot2.x
系列教程58--SpringBoot中整合Redis实现持久化缓存
在上一章节中,我们利用默认的ConcurrentHashMap来实现了一种默认的内存级别的缓存方案。但是该方案并没有进行持久化缓存,一旦内存被释放,缓存也就不存在了,所以本章节中,我带大家利用之前学过的Redis,来实现把缓存数据持久化到Redis中。本案例中,我直接在上一节的案例上进行改造。一.SpringBoot整合Redis实现缓存1.创建web项目我们按照之前的经验,创建一个web程序,并
qfchenjunbo
·
2020-08-15 02:22
SpringBoot2.x
系列教程57--SpringBoot中默认缓存实现方案
在上一节中,我带大家学习了在SpringBoot中对缓存的实现方案,尤其是结合SpringCache的注解的实现方案,接下来在本章节中,我带大家通过代码来实现。一.SpringBoot实现默认缓存1.创建web项目我们按照之前的经验,创建一个web程序,并将之改造成SpringBoot项目,具体过程略。2.添加依赖包org.springframework.bootspring-boot-start
qfchenjunbo
·
2020-08-15 02:22
springboot2.2.x整合thymeleaf无法引用静态资源
springboot2.x
整合thymeleaf的教程请看:传送门。首先看一下我的静态资源路径。我们利用jq作为举例,旧的版本使用的方案是如果没有成功,我们参考网上的教程,书写一个配置类。
matthew_leung
·
2020-08-15 02:17
web开发笔记
spring
boot
项目实战
springboot2.x
整合mail实现邮件发送(验证码为例)
整合mail依赖。org.springframework.bootspring-boot-starter-mail然后将自己的邮箱打开客户端服务。以qq邮箱为例,前往设置->账号。开启pop3或者imap服务即可,保存授权码后面用到。配置application.yml。spring:profiles:active:devmail:#邮件作者名username:
[email protected]
matthew_leung
·
2020-08-15 02:17
web开发笔记
spring
boot
项目实战
spring
boot
smtp
javamail
spring
java
springboot2.x
整合ehcache
整合pom依赖。org.springframework.bootspring-boot-starter-cachenet.sf.ehcacheehcache2.10.6增加yml配置。spring:cache:ehcache:#配置文件路径config:classpath:conf/ehcache.xml增加配置文件,ehcache.xml。配置完成,我们可以利用注解进行开发,也可以封装一个工具类
matthew_leung
·
2020-08-15 02:17
web开发笔记
项目实战
spring
boot
spring boot 2.x 接口返回时间类型不再自动序列化为timestamp
【1585656044119】而在
springboot2.x
版本中,返回值中的java.util.Date类型不再默认序列化为timestamp。
Μr.ηobοdy
·
2020-08-15 02:49
spring
boot
springboot2.x
+rabbitmq使用和源码分析二(生产者配置)
1:手动构建RabbitmqQueueExchangeAutoConfiguration该类用于初始化queueexchange并进行Binding绑定packagecom.fc.rabbitmq_demo.config;importorg.springframework.amqp.core.*;importorg.springframework.context.annotation.Bean;i
F_Hello_World
·
2020-08-15 01:25
rabbitmq
SpringBoot
rabbitmq
springboot2.x
+rabbitmq使用和源码分析四(消费者-Listener使用)
序言:当数据通过生产者产生到发送到exchange交换器,再通过设定的路由规则,经过routingKey,最终会落地到queue中。这个时候引出了Listener消费者了。在第一章中有对RabbitAnnotationDrivenConfiguration该类中源码做过基本分析,该类最大的作用就是通过配置文件的设定用于构建RabbitListenerContainerFactory(该接口的实现,
F_Hello_World
·
2020-08-15 01:25
rabbitmq
SpringBoot
Java B2B2C多用户商城 springcloud架构(一)
首先讲一下我为什么要写这一系列的文章,现在网上大量的springcloud相关的文章,使用的springboot和springcloud的版本都相对比较老,很多还是在使用springboot1.x的版本,如果尝鲜想使用
springboot2
鈡鈡
·
2020-08-15 01:54
SpringBoot2.X
+ Netty + WebSocket 整合
转载请表明出处https://blog.csdn.net/Amor_Leo/article/details/107089890谢谢SpringBoot2.X+Netty+WebSocket整合简介pomyml实体类整合confignettyserverhandler页面接口controllerservice实践简介Netty是一个基于NIO(NonblockingI/O,非阻塞IO)的客户、服务器
SophiaLeo
·
2020-08-15 01:08
JAVA
redis20 - SpringBoot 与 redis 客户端 lettuce集成应用
在springboot1.x系列中,使用的是jedis到了
springboot2.x
系列使用的是Lettuce。
星火燎原智勇
·
2020-08-15 00:00
SpringBoot2.x
系列教程(二十二)简单参数校验及统一异常处理
在之前章节,我们将了如何使用校验框架对JavaBean中的参数进行校验,那么如果只是一些简单参数该如何校验呢?是否也可以用BindingResult接收呢?很遗憾,针对简单参数(比如String,Integer等)并无法使用BindingResult接收。如果强行使用,要么无效(特定场景)要么则会抛出如下异常:org.springframework.web.util.NestedServletEx
二师兄-公众号-程序新视界
·
2020-08-14 22:00
Springboot
spring boot2.x之后不提供hystrix.stream节点处理方法
springboot2.x
之后不提供hystrix.stream节点处理方法作为
springBoot2.x
以后不在提供hystrix.stream节点,导致hystrix数据监控无法返回数据,从而使返回的页面为
小哈士奇��
·
2020-08-14 21:22
个人
基于
springboot2.x
版本的 springcloud 注册中心开启安全验证
基于
springboot2.x
版本的springcloud注册中心开启安全验证
springboot2.x
版本后,SpringSecurity默认开启了所有CSRF攻击防御,需要禁用/eureka的防御,
小哈士奇��
·
2020-08-14 21:22
个人
SpringBoot2.X
之旅,参数绑定、参数校验、参数获取( Web Project)
本文功能是在
SpringBoot2.X
之旅,开篇helloworld(WebProject)基础框架之上实现的一、添加lombok依赖1、pom.xml添加lombok依赖包,使@Slf4j、@Data
八轮Baron
·
2020-08-14 21:34
springboot
hystrix-dashboard 报错 /actuator/hystrix.stream 404 Not Found
中使用hystrix-dashboard进行监控的时候启动报错"path":"/actuator/hystrix.stream","status":404,"error":"NotFound"这是因为
springboot2
weixin_34247155
·
2020-08-14 21:32
Spring Boot2.x 动态数据源配置
原文链接:
SpringBoot2.x
动态数据源配置基于
SpringBoot2.x
、SpringDataJPA、druid、mysql的动态数据源配置Demo,适合用于数据库的读写分离等应用场景。
壹言
·
2020-08-14 20:57
教程
Redis 分布式锁--基于Spring-boot-start-data-redis
在springboot1.x系列中,其中使用的是jedis,但是到了
springboot2.x
其中使用的是Lettuce。因为我们的版本是
springboot2.x
系列,所以今天使
tengxvincent
·
2020-08-14 19:26
redis
spring
boot
springboot2.x
之hystrix配置
feign:hystrix:enabled:trueclient:config:default:connectTimeout:7000readTimeout:7000hystrix:command:default:execution:isolation:thread:timeoutInMilliseconds:8000ribbon:MaxAutoRetries:0#最大重试次数,当Eureka中可
shuangyueliao
·
2020-08-14 19:22
编程技术
快速了解
Springboot2.x
集成Micrometer
快速了解
Springboot2.x
集成Micrometer1.背景2.Micrometer说明2.1什么是Micrometer?2.1Micrometer提供的功能&支持的监控2.1.1、主要功能。
[shenhonglei]
·
2020-08-14 19:16
SkyWalking
Spring
docker
springboot2.x
整合HikariCP
为什么使用HikariCP在
Springboot2.X
版本,数据库的连接池官方推荐使用HikariCP,官方的原话:Productiondatabaseconnectionscanalsobeauto-configuredbyusingapoolingDataSource.SpringBootusesthefollowingalgorithmforchoosingaspecificimplemen
泪了往下咽
·
2020-08-14 19:32
springboot
SpringBoot2.x
之参数校验详解
在正常的业务处理中,针对外部的情况,校验参数的合法性是必须的,而在SpringMVC中有两种验证方式:Spring自带的验证框架和基于JSR实现的框架。其中JSR(JSR303/SR-349)是一个规范文档,规定一些校验规范。HibernateValidator就是基于JSR303规范的具体实现,提供了JSR规范中内置约束注解的实现,同时附加了一些约束注解。当然,用户也可以可以自定义约束注解。依赖
Echo flower
·
2020-08-14 18:56
java错误
Springboot2.x
使用feign优雅调用跨项目接口
1.首先实现server项目,提供数据接口pom.xml4.0.0org.springframework.bootspring-boot-starter-parent2.3.1.RELEASEcom.frankfeign-server0.0.1-SNAPSHOTfeign-serverDemoprojectforSpringBoot1.8org.springframework.bootspring
小石潭记丶
·
2020-08-14 18:16
springboot
feign
SprinBoot2.x 整合 Redis
【简介】
SpringBoot2.x
整合Redis的demo,并没有整合数据库和mybatis等【本文Demo】https://github.com/qidasheng2012/springboot2.x_redis
齐大圣2012
·
2020-08-14 18:05
Redis
SpringBoot
Spring Cloud 集成 Hystrix Dashboard 仪表盘问题汇总
【注】出现问题的版本在
SpringBoot2.x
以上,1.x的仅供参考,一般出问题都是第三种类型1.使用feign调用的服务,需要设置hystrisfeign:hystrix:enabled:true即可
一只奋斗的猪
·
2020-08-14 18:12
SpringBoot
SpringCloud
SpringCloud-Finchley.SR1版本中 hystrix-dashboard 报错 /actuator/hystrix.stream 404 Not Found
中使用hystrix-dashboard进行监控的时候启动报错”path”:”/actuator/hystrix.stream”,”status”:404,”error”:”NotFound”这是因为
springboot2
luckykapok918
·
2020-08-14 17:07
SpringCloud
springboot2.x
mybatis多数据源实现
springboot版本:2.1.1.RELEASE启动日志:运行日志:附上配置信息server.port=8001server.servlet.context-path=/dev#数据源配置(默认)#useSSL=falseMySQL在高版本需要指明是否进行SSL连接(不加第一次连接数据库会有警告信息)spring.datasource.driver=com.mysql.cj.jdbc.Driv
烟光凝而
·
2020-08-14 17:43
java
hystrix dashboard Unable to connect to Command Metric Stream 的解决办法
将这个项目连接到我的另一个springCloud项目里,却报错:UnabletoconnecttoCommandMetricStream在网上搜索发现一种解决方法说,“如果使用的是
springBoot2
guile
·
2020-08-14 16:29
java
java.lang.NoClassDefFoundError: Could not initialize class com.fasterxml.jackson.databind.ObjectMapp
springboot2.X
整合mybatisplus3.X坑系列解决办法:引入以下依赖com.fasterxml.jackson.corejackson-databind自己喜欢,切合版本重点:解决此类问题的有效方法
快乐小咸鱼007
·
2020-08-14 16:23
java
mybatis
plus
springboot
mybatis
Springboot2.x
整合mybatis + Druid, 配置Druid数据源监控
1.引入jar包org.mybatis.spring.bootmybatis-spring-boot-starter1.3.2org.springframework.boot spring-boot-starter-jdbccom.alibabadruid-spring-boot-starter${springboot.druid.version}com.oracleojdbc6${oracle.
不写BUG的瑾大大
·
2020-08-14 16:27
JAVA基础
Unable to connect to Command Metric Stream.使用Hystrix-dashboard监控不到状态数据问题(
springBoot2.x
以上版本)
UnabletoconnecttoCommandMetricStream.使用Hystrix-dashboard监控不到状态数据问题(
springBoot2.x
以上版本)
springBoot2.x
以上的配置发生了变化
小哈士奇��
·
2020-08-14 15:20
个人
SpringBoot2.x
防重复提交token(注解方式)
【简介】在开发过程中经常需要做防止重复提交处理,例如:下订单,保存信息等等前端处理思路:点击按钮后,立即将按钮置灰且不可使用,然后调用处理逻辑接口,当接口有响应后重新使按钮重新亮起可用后端处理思路:思路一、建立数据库唯一索引,通过数据库唯一索引,保证数据唯一思路二、通过token方式,调用业务接口前先调用接口获取token,调用业务接口时传入token,先进行token校验和处理,当token正确
齐大圣2012
·
2020-08-14 15:33
SpringBoot
spring boot 2.x 配置数据源hikariCP和druid
hikariCP从
springboot2.X
版本起,默认的数据连接池就改成了hikariCP。hikariCP的性能及其优异,hikariCP号称java平台最快的数据库连接池。
阿琪琪琪
·
2020-08-14 15:19
spring
boot
spring boot 2.x 接口参数统一校验
如何实现自定义拦截器请参考
springboot2.x
简单实现自定义拦截器publicbooleanpreHandle(HttpServletRequestrequest,HttpServletResponseresponse
阿琪琪琪
·
2020-08-14 15:18
spring
boot
SpringBoot2.x
入门教程之引入jdbc模块与JdbcTemplate简单使用方法
前提这篇文章是《
SpringBoot2.x
入门》专辑的第7篇文章,使用的SpringBoot版本为2.3.1.RELEASE,JDK版本为1.8。
·
2020-08-14 10:22
SpringBoot2.x
系列教程(九)基于Postman的RESTful接口调用
使用SpringBoot开发Web项目一般有两种类型,一种是传统的前后端在同一个项目(jsp、freemarker等),一种是前后端分离的项目(API形式,包括APP)。本篇文章基于API形式的接口调用来介绍Postman这款工具的使用。Postman除了提供模拟Http请求之外,还提供了很多高级功能,比如:自动化测试、auth认证、js脚本及生成各类语言代码等。这里我们仅以基础功能来进行讲解,关
二师兄-公众号-程序新视界
·
2020-08-14 08:51
springboot2.x
整合mybatis-plus,mysql实现多数据源
怎么新建springboot项目我在这里就不介绍了,首先我们先来看一下需要引入哪些主要的jar1:pom.xml4.0.0org.springframework.bootspring-boot-starter-parent2.1.7.RELEASEcom.exampledome0.0.1-SNAPSHOTdomeDemoprojectforSpringBootUTF-8UTF-81.81.1.28
蚂蚁-呀嘿
·
2020-08-14 07:24
springboot
Mysql
多数据源
springboot2.x
连接postgresql数据库报错: org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作
参考文章:这个org.postgresql.jdbc.PgConnection.createClob()方法尚未被实作使用Springboot连接两个数据库进行配置操作时候报这样的错误:java.lang.reflect.InvocationTargetException:nullatsun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethod
风情客家__
·
2020-08-14 07:15
springboot
postgresql
Spring Boot Actuator将监控指标导出到InfluxDB和Prometheus
SpringBootActuator是
SpringBoot2.x
发布后修改最多的项目之一。
杭州李太白
·
2020-08-14 06:29
JAVA异常:java.lang.AbstractMethodError: ...tomcat.websocket.server.WsSessionListener.sessionCreated
org.apache.tomcat.websocket.server.WsSessionListener.sessionCreated异常原因解决方案更改tomcat版本为8.5.37最近在开发oauth2的时候,发现了这个异常异常原因
SpringBoot2
土豆沒加
·
2020-08-14 06:19
异常解决
spring5/springboot2源码学习 -- xml文件的解析
在如今的spring5.x版本已经
springboot2.x
版本中,xml已经不再是唯一的配置手段了,甚至已经不再是推荐的手段。
pumpkin_pk
·
2020-08-13 23:26
spring
深度解析
SpringBoot2.x
整合Spring-Data-Redis
准备工作准备一个
springboot2.x
的工程,并引入web和spring-data-redis的starter,再引入对象池commons-pool2的依赖。
花 45919377
·
2020-08-13 22:42
SpringBoot2.X
学习第十三课(SpringBoot全局异常处理)
在项目开发过程中难免遇到异常,如果不进行处理的话直接返回给前端的话就会非常不友好,这里我们就进行SpringBoot异常处理的讲解,官方文档:https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#boot-features-error-handling一.全局异常处理首先我们先制造一个异
泼墨画丹青
·
2020-08-13 17:39
springboot
spring-boot学习:十五、spring-boot集成thymeleaf
springboot2.x
和spring5.x不再支持velocity,推荐使用thymeleaf,原因是velocity更新太慢或太少,社区不够活跃。
Kevin.Y.K
·
2020-08-13 10:59
spring-boot
spring-boot学习:十七、spring-boot集成redis
在springboot1.x中默认使用Jedis,而在
springboot2.x
中默认使用lettuce。为什么使用lettuce替换jedis呢?
Kevin.Y.K
·
2020-08-13 09:21
spring-boot
基于
SpringBoot2.X
的微服务架构,整合Eureka注册中心、Config配置中心、Bus消息总线、Hystrix熔断、Turbine聚合监控、Zipkin服务跟踪
基于
SpringBoot2.X
的微服务架构,整合Eureka注册中心、Config配置中心、Bus消息总线、Hystrix熔断、Turbine聚合监控、Zipkin服务跟踪Eureka注册中心引入依赖定义配置文件定义启动引导类运行启动类
喝酸奶的小睿睿
·
2020-08-12 18:51
SpringBoot
SpringCloud
Hystrix
Config
Zipkin
SpringBoot2.X
,整合JPA 返回视图对象转json报错, SyntaxError: JSON.parse: unexpected character at line 1 column 1
SpringBoot2.X
,整合JPA返回视图对象转json报错,SyntaxError:JSON.parse:unexpectedcharacteratline1column1oftheJSONdata
`大海`
·
2020-08-12 18:37
SpringBoot
无意间发现一个好用的视频转换gif图片的开源框架
知识改变命运,撸码使我快乐,2020继续游走在开源界点赞再看,养成习惯给我来个Star吧,点击了解下基于SpringBoot的组件化接口服务落地解决方案推荐阅读
SpringBoot2.x
教程汇总简介Gifify
恒宇少年
·
2020-08-12 18:18
java
python
linux
大数据
github
GitHub Actions使用入门
知识改变命运,撸码使我快乐,2020继续游走在开源界点赞再看,养成习惯给我来个Star吧,点击了解下基于SpringBoot的组件化接口服务落地解决方案推荐阅读
SpringBoot2.x
教程汇总简介GitHubActions
恒宇少年
·
2020-08-12 18:18
java
github
spring
boot
spring
git
上一页
14
15
16
17
18
19
20
21
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他