摘要:
<!-- io常用工具类 --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> </dependency> <!-- excel工具 - 阅读全文
2023年1月3日
2022年12月27日
摘要:
有一个列表,从中筛选出值大于30的元素。看看用传统的做法和Java流的做法有什么不同。 List<Integer> list = new ArrayList<>(); list.add(1); list.add(20); list.add(40); list.add(100); // 按照以前的方法 阅读全文
摘要:
1.先引入 npm install --save vue-pdf vue3用 npm install --save vue-pdf3 2.导入 import pdf from 'vue-pdf' components: {pdf}, 3.vue中使用 <pdf style="width:100%;h 阅读全文
2022年12月7日
摘要:
1、yml添加 # 日志配置 logging: level: #自己的包名 com.wrblog: debug org.springframework: warn 2、在resources下创建logback.xml文件并更改自己的日志保存路径 <?xml version="1.0" encodin 阅读全文
摘要:
// 查询所有 List<T> list(); // 查询列表 List<T> list(Wrapper<T> queryWrapper); // 查询(根据ID 批量查询) Collection<T> listByIds(Collection<? extends Serializable> idL 阅读全文
摘要:
1、引入maven <!-- mysql --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dep 阅读全文
摘要:
创建CardUtil工具类 public class CardUtil { /** * 验证身份证真假 * @param carNumber 身份证号 * @return boolean*/ public static boolean isCard(String carNumber) { //判断输 阅读全文
摘要:
1、首先maven <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <depende 阅读全文
2022年8月24日
摘要:
闲来无事看了看RabbitMq的队列,总结了一些队列的实现方法,当然,免不了各种看别人的博客哈哈哈 其中延时队列有两种方式,一种是使用TTl+死信队列实现,一种是直接用RabbitMq的官方插件 第一种写起来比较麻烦,这里就只说第二种了 接下来从头开始说吧 1.首先是插件下载 打开链接https:/ 阅读全文
2022年8月18日
摘要:
wait()的作用是让当前线程由运行状态进入等待阻塞状态 而sleep()的作用也是让线程由运行状态进入阻塞状态 不同的是wait()会释放对象的同步锁,而sleep()则不会释放锁 wait通常被用于线程间交互,sleep通常被用于暂停执行。 阅读全文