摘要:
实现方式代码如下: package com.liu.sparse; /** * 二维数组转换为稀疏数组案例 */ public class SparseArray { public static void main(String[] args) { //创建二维数组 int array[][] = 阅读全文
摘要:
链接:https://mp.weixin.qq.com/s?src=11×tamp=1657285840&ver=3908&signature=LMVsZcZzhAH6reSCTkgLOgdP*2*Ovc95OYawnSrtnVefoZaRAxCUD4QkgFMlgRUB6wxPeVPT8 阅读全文
摘要:
这篇文章已解决:https://zhuanlan.zhihu.com/p/162909888 阅读全文
摘要:
问题描述:application.yaml中的info失效问题解决 配置actuator如下 management: endpoints: web: exposure: include: "*" endpoint: health: show-details: always info: descrip 阅读全文
摘要:
一、异步任务(主要涉及两个注解@EnableAsync--开启和@Async--指定方法为异步方法): 1、首先SpringBoot开启异步运行环境,通过注解@EnableAsync开启 package com.liu; import org.springframework.boot.SpringA 阅读全文
摘要:
1、从maven仓库中导入依赖: <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version></dependency><depend 阅读全文
摘要:
参考如下链接:https://www.cnblogs.com/dbhgood/p/14309541.html 官网地址:zookeeper官网:https://zookeeper.apache.org/ 上面博客中为3.6版本的,其中除了一个复制.cfg的方法,也可以在配置中更改: 将bin\zkE 阅读全文
摘要:
详见如下链接:https://www.cnblogs.com/churujianghudezai/p/12953756.html 阅读全文
摘要:
近期学习springSecurity时,对于loginProcessingUrl()产生了极大的兴趣, 看了挺多的博客,觉得这篇讲里面的方法比较透彻,分享给大家啦,嘿嘿~ https://blog.csdn.net/m0_37609060/article/details/115288956 阅读全文
摘要:
最近创建引入Druid数据源时,log4j报错,总结为log4j与druid存在版本不兼容和未配置log4j问题 解决办法: 1、先将druid版本降低一个版本1.2.11改为1.2.10 2、将log4j.properties文件配置在res的根目录下 粘贴如下代码到配置文件中: log4j.ro 阅读全文