spring boot
略
my596257
这个作者很懒,什么都没留下…
展开
-
【springboot】maven profileActive动态配置的使用
文章目录前言示例首先,在最上层pom文件添加如下配置然后,在模块内的pom文件添加配置接着添加多环境配置文件最后,是使用方法前言示例首先,在最上层pom文件添加如下配置<profiles> <profile> <id>dev</id> <properties> <profileActive>dev</profileActiv转载 2022-10-11 18:15:56 · 4796 阅读 · 0 评论 -
【springboot】记录一次springboot依赖冲突解决过程
文章目录项目场景:问题描述:原因分析:解决方案:总结项目场景:新搭了一个springboot 2.3.7.RELASE的框架,在集成mysql,tkMapper,mybatis的过程中,启动报错。问题描述:提示各种依赖的错误通过idea的功能解决冲突依赖,尝试了多次,也不行还尝试过删除可能意外引入的jar:![在这里插入图片描述](https://img-blog.csdnimg.cn/e9193d9a09d24370a190a777e85be21f.png?x-oss-process=原创 2021-09-17 16:07:19 · 715 阅读 · 1 评论 -
【springboot】springboot中文乱码
前言转载自:https://blog.csdn.net/m0_37316406/article/details/102498425示例@Configurationpublic class WebAppConfig extends WebMvcConfigurationSupport { @Bean public HttpMessageConverter<String> responseBodyConverter() { StringHttpMessageC转载 2021-09-10 10:23:49 · 295 阅读 · 0 评论 -
【spring boot】SpringBoot与SpringCloud的版本对应详细版(转载)
前言转载地址:https://www.cnblogs.com/zhuwenjoyce/p/10261079.html在实际开发过程中,我们需要详细到一一对应的版本关系:Spring 官方对应版本地址: https://start.spring.io/actuator/info转载 2021-06-07 11:08:51 · 200 阅读 · 0 评论 -
SpringBoot 上下文获取注入的Bean(转载)
前言用到了两篇文章https://blog.csdn.net/weixin_30855099/article/details/97504848https://blog.csdn.net/sgl520lxl/article/details/103694063代码import lombok.extern.slf4j.Slf4j;import org.springframework.beans.BeansException;import org.springframework.conte.转载 2021-05-18 10:55:16 · 493 阅读 · 0 评论 -
【aop】使用SpringBoot AOP 记录操作日志、异常日志【转载】
前言文章转载自:https://www.cnblogs.com/wm-dv/p/11735828.html原本内容(实现步骤)使用SpringBoot AOP 记录操作日志、异常日志 平时我们在做项目时经常需要对一些重要功能操作记录日志,方便以后跟踪是谁在操作此功能;我们在操作某些功能时也有可能会发生异常,但是每次发生异常要定位原因我们都要到服务器去查询日志才能找到,而且也不能对发生的异常进行统计,从而改进我们的项目,要是能做个功能专门来记录操作日志和异常日志那就好了, 当然我们肯定有方法.转载 2021-05-10 14:16:49 · 453 阅读 · 2 评论 -
【springbatch】springboot集成springbatch批处理
学习目标:学习springboot集成sprintbatch批处理学习内容:掌握springboot集成批处理主要步骤如下,把这几个步骤实现,批处理也就基本完成了中间遇到的问题:在复制博客中的数据库连接池的时候,出现了错误,后来改了改,成功了学习时间:两天学习产出:提示:这里统计学习计划的总量通过批处理,可以从文件批量读取数据存入数据库;或者读取数据存入文件;以及:平时经常遇到的数据清理或者数据过滤,又或者是数据迁移备份等等。 大批量的数据,自己实现分批处理需要考虑的东西转载 2021-03-24 14:51:09 · 458 阅读 · 0 评论 -
【springboot】springboot开发微信公众号
前言转载自:https://mp.weixin.qq.com/s?__biz=MzI3ODcxMzQzMw截图:转载 2021-03-17 16:13:33 · 133 阅读 · 0 评论 -
【springboot】springboot autoconfig自动装配(转载)(学习如何使用)
前言文档:https://www.cnblogs.com/zxporz/p/10701646.html转载 2021-03-17 14:09:13 · 235 阅读 · 0 评论 -
【springboot】spring boot yml proterties转bean
前言转载自:https://www.cnblogs.com/pecool/archive/2004/01/13/13040698.html开始依赖 pom:导入配置文件处理器,配置文件进行绑定就会有提示<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring‐boot‐configuration‐processor</arti.转载 2021-01-25 16:07:37 · 332 阅读 · 0 评论 -
【springboot】springboot freemarker更新
前言转载自:https://blog.csdn.net/silentwolfyh/article/details/85048745设置步骤第一步第二步转载 2021-01-18 08:57:03 · 335 阅读 · 0 评论 -
【logback】springboot日志之logback
前言springboot项目中配置logback日志转载自:[https://blog.csdn.net/appleyk/article/details/78717388#]文档2:https://blog.csdn.net/mu_wind/article/details/99830829实例首先添加logback.xml<configuration> <!-- %m输出的信息,%p日志级别,%t线程名,%d日期,%c类的全名,%i索引【从数字0开始.转载 2021-01-07 15:50:36 · 85 阅读 · 0 评论 -
【springboot】springboot日期格式化
前言方法1:https://www.cnblogs.com/christopherchan/p/12404804.html方法2:https://blog.csdn.net/tianhouquan/article/details/91040087示例我使用的方法1配置# jacksonspring.application.jackson.default-property-inclusion=ALWAYSspring.application.jackson.time-zone=GM.转载 2021-01-06 16:36:46 · 362 阅读 · 0 评论 -
【接口】模拟http请求接口
前言转载自:https://blog.csdn.net/qq_16513911/article/details/83018027使用示例/*** 模拟mvc测试对象*/private MockMvc mockMvc;/*** web项目上下文*/@Autowiredprivate WebApplicationContext webApplicationContext;/** * 所有测试方法执行之前执行该方法 */@Beforepublic void before.转载 2020-11-09 09:04:51 · 329 阅读 · 0 评论 -
【xxl-job】学习使用xxl-job之发送报警邮件(二)
前言测试失败发生异常时进行邮件发送实践首先,编辑任务,在报警邮件那里,填入自己的邮箱然后,修改调度中心下的邮件配置。下面是示例:password为授权码,然后enable和required改为了false### xxl-job, emailspring.mail.host=smtp.qq.comspring.mail.username=xxxxxxxxx@qq.comspring.mail.password=qjvqwwxxxxxxxxxspring.mail.from=xxx.原创 2020-10-30 14:17:02 · 11870 阅读 · 9 评论 -
【xxl-job】学习使用xxl-job之测试执行任务和自定义任务(一)
前言官网:https://www.xuxueli.com/xxl-job/#2.2%20%E7%BC%96%E8%AF%91%E6%BA%90%E7%A0%81步骤按照文章教程来即可原创 2020-10-30 11:20:18 · 2370 阅读 · 0 评论 -
【spring boot】springboot项目注入@Datasource
前言之前记得想要注入dataSource,需要引入data-jpa依赖。现在搜到一篇文章,可以通过下面的方式实现:https://blog.csdn.net/qq_35760213/article/details/73863252实现方式使用Spring Boot默认数据源首先,添加依赖<!-- springboot jdbc --><dependency> <groupId>org.springframework.boot</gro.转载 2020-09-24 10:15:50 · 8145 阅读 · 1 评论 -
【springboot】springboot集成shiro环境下配置
前言文档:https://www.cnblogs.com/ziyunfei/p/5637945.htmlhttps://blog.csdn.net/yanyang1116/article/details/56511009https://blog.csdn.net/boom_man/article/details/84642040https://www.cnblogs.com/penghq/p/13299027.html 有点用,但是不能用。因为我们用的shiro session,没用spri.转载 2020-08-21 10:59:46 · 115 阅读 · 0 评论 -
【springboot】SpringBoot 2.x 配置大全(上、中、下)
前言转载自:https://www.jianshu.com/p/8629f66ab67bSpringBoot 2.x 配置大全(上篇)SpringBoot 2.x 配置大全(中篇)SpringBoot 2.x 配置大全(下篇)转载 2020-08-07 13:40:06 · 154 阅读 · 0 评论 -
java.lang.NoClassDefFoundError: com/alibaba/csp/sentinel/log/CommandCenterLog
前言springboot+dubbo+sentinel整合,向sentinel控制台注册心跳时,服务调用成功,但是控制台报错,信息如下:Exception in thread "Thread-16" java.lang.NoClassDefFoundError: com/alibaba/csp/sentinel/log/CommandCenterLog at com.alibaba.csp.sentinel.transport.command.SimpleHttpCommandCenter$2.r.原创 2020-07-21 10:07:26 · 8628 阅读 · 5 评论 -
【springboot】springboot集成dubbo
前言转载:https://my.oschina.net/u/3178270/blog/2995712详细步骤明天补充转载 2020-07-20 17:11:44 · 136 阅读 · 0 评论 -
【springboot】springboot中没有主清单属性解决办法
前言转载:https://blog.csdn.net/fu_zhongyuan/article/details/87920083转载 2020-07-16 11:01:13 · 360 阅读 · 0 评论 -
【springboot】seata学习之AT
前言文档seata AT模式介绍:https://seata.io/zh-cn/docs/dev/mode/at-mode.htmlspringboot集成seata AT模式:http://www.iocoder.cn/Spring-Boot/Seata/?selfseata服务端之tc 单独部署:http://seata.io/zh-cn/docs/ops/deploy...转载 2020-04-29 11:03:02 · 454 阅读 · 0 评论 -
【springboot】分布式事务之Seata(仅用于个人总结)
前言seata官网:http://seata.io/zh-cn/index.html介绍seata是什么Seata 是一款开源的分布式事务解决方案,致力于提供高性能和简单易用的分布式事务服务。Seata 将为用户提供了 AT、TCC、SAGA 和 XA 事务模式,为用户打造一站式的分布式解决方案。部署Seata分TC、TM和RM三个角色:==TC(Server端)==...转载 2020-04-29 13:59:00 · 320 阅读 · 1 评论 -
【spring】注入datasource失败
前言转载:http://www.iigrowing.cn/?p=7551在项目里面如果要注入dataSource,则需要添加以下两个依赖之一在pom文件中直接依赖官方提供的spring-boot-start-jdbc模块或者spring-boot-start-data-jpa模块。<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-st.转载 2020-07-08 15:41:43 · 3542 阅读 · 1 评论 -
【springboot】替代swagger的新插件JApiDocs
前言JApiDocs使用步骤注意事项main方法需要和代码在同一目录。位置要求,类似springboot启动类。缺点:该版本(1.4)不适用与微服务。需要入参的实体类与方法在同一项目。引入依赖<dependency> <groupId>io.github.yedaxia</groupId> <artifactId>japidocs</artifactId> <version>1.4</vers.原创 2020-06-23 10:42:43 · 2020 阅读 · 4 评论 -
【springboot】全局异常捕捉
前言如题,部分代码来自百度代码package com.xiben.pm.file.system.init.exception;import com.xiben.pm.file.system.dto.RestCode;import lombok.Data;/** * @author :qilong sun * @date :Created in 2020/4/7 12:58 * @description:自定义异常 ps:spring 对于 RuntimeException 异常.转载 2020-06-17 15:22:21 · 334 阅读 · 0 评论 -
【springboot 】springboot 2.2.5集成nacos1.2.1
前言根据官网推荐,springboot2.2.5版本集成Nacos,已实现配置管理代码代码地址:https://gitee.com/xueyedangkong/nacos-server.gitnacos 1.2.1链接:https://pan.baidu.com/s/1kgpn_PQETj8O_DmOzO9AHA提取码:xc1g原创 2020-06-16 09:46:58 · 1183 阅读 · 0 评论 -
springboot2.2.7集成nacos1.3
前言官方文档:https://nacos.io/zh-cn/docs/quick-start-spring-boot.html我的nacos版本:1.3注意事项我的后台代码:import com.alibaba.nacos.api.config.annotation.NacosValue;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annota.原创 2020-06-12 14:25:08 · 1911 阅读 · 0 评论 -
springboot父工程版本使用el表达式
前言转载:https://blog.csdn.net/weixin_33811961/article/details/92299015转载 2020-06-10 15:58:15 · 214 阅读 · 0 评论 -
mapstruct+lombok+validator,简化代码三剑客
前言转载自:https://blog.csdn.net/MingLiang000/article/details/82726571转载 2020-06-10 15:54:04 · 328 阅读 · 0 评论 -
org.springframework.web.reactive.socket.client.WebSocketClient
前言错误信息No qualifying bean of type 'org.springframework.web.reactive.socket.client.WebSocketClient' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}场景springboot2.2.2 集成gateway,spring cloud版本:Hoxton.S.原创 2020-06-08 13:38:08 · 2799 阅读 · 0 评论 -
springboot2.2.x集成zipkin
前言场景:springboot2.2.2集成zipkin。 在做集成gateway的时候,在网上看到别人的配置里面有这个zipkin的配置,就随便搜了下,没想到是个监控服务的。类似相关的插件,之前集成过springboot admin。开始看网上的教程,自己就单独建了个子工程,然后引入依赖,写入配置。启动类添加服务端注解,进行启动,失败了。搜了一番,去除log4j依赖,添加tomcat相关依赖,springboot web等相关依赖,都没成功。最后就按着其中的一篇博客,上面说到spring.转载 2020-05-27 10:39:49 · 3409 阅读 · 5 评论 -
@GetMapping@PostMapping@PutMapping@DeleteMapping@PatchMapping
前言转载:https://www.jianshu.com/p/8cf27d78d446转载 2020-05-06 13:34:15 · 627 阅读 · 0 评论 -
视频分段渐进式播放
前言文档:video.js:https://blog.csdn.net/charleslei/article/details/50964176代码仅使用video.js<html><head><link href="./video-js.min.css" rel="stylesheet"><script src="./video...转载 2020-04-16 10:24:17 · 2137 阅读 · 0 评论 -
【springboot】springboot参数校验
参数校验文档:https://blog.csdn.net/jinjiankang/article/details/89711493转载 2020-04-13 11:09:18 · 165 阅读 · 0 评论 -
【springboot】springboot中使用@Slf4j进行日志输出
前言文章:https://blog.csdn.net/shangrila_kun/article/details/89357680代码引入lombok类上面添加@Slf4j,然后在代码写入一下内容即可log.info(123)转载 2020-04-08 10:10:58 · 3930 阅读 · 0 评论 -
springboot集成redis消息过期处理
前言代码最后转载 2020-03-16 10:42:24 · 1141 阅读 · 0 评论 -
springboot2.X 使用熔断器
前言如题转载 2020-01-17 15:19:16 · 555 阅读 · 0 评论 -
【springboot】springboot集成pageHelp
前言步骤如下:添加依赖<!-- pagehelper --><dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId></dependency>注入到bea...转载 2020-01-10 23:19:19 · 422 阅读 · 0 评论