随笔分类 - JAVA
JAVA一些常用的方法
摘要:1、@EnableAsync 首先,我们需要在启动类上添加 @EnableAsync 注解来声明开启异步方法。 @SpringBootApplication @EnableAsync public class SpringbootAsyncApplication { public static vo
阅读全文
摘要:*工作顺序:* 1)、线程池创建,准备好core数量的核心线程, 准备接受任务* 1.1、core满了,就将再进来的任务放入阻塞队列中。空闲的core就会自己去阻塞队列获取任务执行* 1.2、阻塞队列满了,就直接开新线程执行,最大只能开到max指定的数量* 1.3、max满了就用RejectedEx
阅读全文
摘要:import java.util.HashMap; import java.util.Map; /** * @author yvioo */ public class UrlUtils { /** * 获取请求地址中的某个参数 * @param url * @param name * @return
阅读全文
摘要:org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: org/w3c/dom/ElementT
阅读全文
摘要:在A对象的xml配置文件中 一对一<association property="shop" column="shop_id" select="com.ShopMapper.selectShopById"/>property:这表示在A对象中有一个shop对象 column:这表示A对象关联shop对
阅读全文
摘要:官方git地址:https://gitee.com/itmuch/light-security/tree/master 引入maven <dependency> <groupId>com.itmuch.security</groupId> <artifactId>light-security-spr
阅读全文
摘要:1、引入maven (代码是连接mysql) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <depend
阅读全文
摘要:我们在同级目录下增加 然后增加一个配置类 SpringBootConfiguration.java import org.springframework.beans.factory.config.YamlPropertiesFactoryBean; import org.springframewor
阅读全文
摘要:先安装openoffice4 Linux系统安装参考:https://www.cnblogs.com/pxblog/p/11622969.html Windows系统安装参考:https://www.cnblogs.com/pxblog/p/14346148.html 引入jar包 https://
阅读全文
摘要:SpringBoot启动报错 ***************************APPLICATION FAILED TO START*************************** Description: The bean 'XXX', defined in class path re
阅读全文
摘要:import java.util.regex.Matcher; import java.util.regex.Pattern; /** * 判断是否为移动端设备访问 * */ public class CheckMobile { // \b 是单词边界(连着的两个(字母字符 与 非字母字符) 之间的
阅读全文
摘要:import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springfra
阅读全文
摘要:JAVA验证身份证号码是否正确:https://www.cnblogs.com/pxblog/p/12038278.html /** * 通过身份证号码获取出生日期(birthday)、年龄(age)、性别(sex) * @param idCardNo 身份证号码 * @return 返回的出生日期
阅读全文
摘要:Caused by: redis.clients.jedis.exceptions.JedisDataException: READONLY You can't write against a read only slave. at redis.clients.jedis.Protocol.proc
阅读全文
摘要:引入maven <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version> </dependency> 代码 static String constr =
阅读全文
摘要:import org.apache.commons.lang.StringUtils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.StatusLine;
阅读全文
摘要:引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <version>2.1.7.RELEASE</version>
阅读全文
摘要:public static void main(String[] args) { Field[] fields=BaseSalary.class.getDeclaredFields(); for (int i = 0; i < fields.length; i++) { System.out.pri
阅读全文
摘要:private static Pattern humpPattern = Pattern.compile("[A-Z]"); /** * 驼峰转下划线 * @param str * @return */ public static String humpToLine(String str) { Ma
阅读全文
摘要:引入maven依赖 <!-- https://mvnrepository.com/artifact/com.github.stuxuhai/jpinyin --> <dependency> <groupId>com.github.stuxuhai</groupId> <artifactId>jpin
阅读全文