- 博客(7)
- 资源 (4)
- 收藏
- 关注
原创 java百分比计算
(1)DecimalFormat decimalFormat = new DecimalFormat("##.00%"); System.out.println(decimalFormat.format(1 / 5.0));(2)NumberFormat nt = NumberFormat.getPercentInstance();nt.setMinimumFractionDigits(2);System.out.println("百分数:...
2021-12-29 16:23:15 518
原创 vue element-ui el-date-picker 限制日期禁止选择今天以后的日期
主要代码如下:然后在return里加:picker-options="expireTimeOption"expireTimeOption: { disabledDate(date) { //disabledDate 文档上:设置禁用状态,参数为当前日期,要求返回 Boolean return date.getTime() >= (Date.now() - 24 * 60 * 60 * 1000); }},...
2021-10-19 10:41:14 586
原创 密码强度校验规则java
//数字String REG_NUMBER = ".*\\d+.*";//小写字母String REG_UPPERCASE = ".*[A-Z]+.*";//大写字母String REG_LOWERCASE = ".*[a-z]+.*";//特殊符号(~!@#$%^&*()_+|<>,.?/:;'[]{}\)String REG_SYMBOL = ".*[~!@#$%^&*()_+|<>,.?/:;'\\[\\]{}\"]+.*";使用mat.
2021-07-26 16:06:27 443
原创 给上传的图片加水印再返回一个MultipartFile类
package com.mall.util.imagemarkUtils;import org.springframework.mock.web.MockMultipartFile;import org.springframework.web.multipart.MultipartFile;import javax.imageio.ImageIO;import javax.imageio.stream.ImageOutputStream;import javax.swing.*;impor.
2021-07-26 15:36:15 279
原创 Springboot打包成jar后,访问不到jsp
Springboot不建议使用JSP,所以会忽略JSP文件。1.打包成jar的过程中,没有包含jsp文件。可在pom.xml的-下加入下面代码。<resource> <directory>src/main/webapp</directory> <targetPath>META-INF/resources</targetPath> <includes> <include>**/**</inclu
2020-09-05 10:07:08 1002
转载 java让程序休眠的两种方式
方法一:通过线程的sleep方法。Thread.currentThread().sleep(1000);在需要程序等待的地方加入这个语句,实现让程序等待,这里的参数1000是以毫秒为单位,即这语句可以让程序等待1秒。方法二:TimeUnit类里的sleep方法。import java.util.concurrent.TimeUnit;1 TimeUnit.DAYS.sleep(1);//天2 TimeUnit.HOURS.sleep(1);//小时3 TimeUnit.MINUTES.slee
2020-09-05 09:44:51 21702
转载 Spring boot 2.0 Actuator 的健康检查
spring boot 框架是spring framework发展史上一次质的飞跃,用过都说好。它不仅仅是简化了繁琐的配置文件,提高了开发效率,整合了开发中常用的各种组件,优雅地处理了它们之间的版本兼容性问题,等等。除了以上这些优点还有本文将重点介绍的监控,Spring boot框架自带全方位的监控,这样,做spring boot应用的监控简直是太方便了。00 前言在当下流行的Serv...
2020-01-10 10:54:12 1505
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人