随笔分类 -  JAVA

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

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页