I am Wuxinshui
-
Java 获取接口所有实现类
利用Spring的Bean工厂,获取接口所有实现类。
-
Spring Boot 集成RabbitMQ
RabbitMQ is an open source multi-protocol messaging broker.
-
Java BigDecimal开方
一般开平方使用的是Math中的静态方法Math.sqrt(double a),涉及到金融计算的时候,Math.sqrt(double a)精度就不够了。金融领域的计算,用的都是BigDecimal类型。然而BigDecimal对于数字开平方没提供有效的方法。 这里整理了一些网上提供的方案。
-
Spring Boot集成Quartz-动态任务管理
Quartz提供了一组丰富的API,来管理Job。
-
Spring Boot 定时任务之Quartz
Quartz is a richly featured, open source job scheduling library that can be integrated within virtually any Java application。
-
Spring Boot 定时任务之@Schedule
The @Scheduled annotation can be added to a method along with trigger metadata.
-
Java枚举抽象方法实战
枚举类型是指由一组固定的常量组合成合法值的类型。
-
ArrayList在Java多线程中的应用
ArrayList是非线程安全的。
-
Java非法字符 'ufeff'
utf-8+bom比utf-8多了三个字节前缀:0xEF0xBB0xBF,有这三个字节前缀的文本或字符串,程序可以自动判断它为utf-8格式,并按照utf-8格式来解析文本或字符串。
-
SonarQube 安装
SonarQube® software (previously called Sonar) is an open source quality management platform, dedicated to continuously analyze and measure technical quality, from project portfolio to method.